adambard / adambard/learnxinyminutes-docs

Objective-C: Object declarations

Offen
#691 5 Kommentare 0 Reaktionen 0 zugewiesene Personen Auf GitHub ansehen
enhancement
Vorherrschende Sprache
Markdown
Sterne
12.3k
Forks
3.7k
Ø Merge
13 Std. 10 Min.
Gemergte PRs (30 T.)
6

Beschreibung

[The page](http://learnxinyminutes.com/docs/objective-c/) states the following:

```
// Object declarations
// Put the * in front of the variable names for strongly-typed object declarations
MyClass *myObject1 = nil; // Strong typing
id myObject2 = nil; // Weak typing
```

However, this is misleading if not completely incorrect.
The `*` is the same as it is in C, it means it's the variable is a pointer. It's not clear what is meant by 'strong' or 'weak' typing here, but it's my understanding that, like C, Objective-C is a weakly-typed language (though statically enforced at compile-time).

Rather, I think what is being said here is that `myObject` is referencing an explicit (statically-checked) object of type `MyClass` while `myObject2` is referencing any Objective-C object.

I would fix this myself, but I'm just learning the language and would prefer to defer to someone with more expertise.

Beitragsleitfaden

Beitragsleitfaden öffnen

Bewertung

Dieses Issue wurde noch nicht bewertet.

Neue Issues direkt in Ihr Postfach

Eine kurze Übersicht über anfängerfreundliche GitHub-Issues.