What do you call this arrow looking -> operator found in PHP?
It's either a minus sign, dash or hyphen followed by a greater than sign (or right chevron).
How do you pronounce it when reading code out loud?
|
What do you call this arrow looking It's either a minus sign, dash or hyphen followed by a greater than sign (or right chevron). How do you pronounce it when reading code out loud? |
||||
|
|
|
the official name is "object operator" - T_OBJECT_OPERATOR. I call it "arrow". |
|||||||||||||||||
|
|
When reading PHP Code aloud, I don't pronounce the "->" operator. For Same goes for the Paamayim Nekudotayim ("::"). |
|||
|
|
|
Most often, I use some variation on @Tor Valamo's method ("the B method of A" or "A's B method"), but I sometimes say "dot". E.g. "call A dot B()". |
|||||||
|
|
I call it "thingy" |
|||||
|
|
When reading the code to myself, I think of it like a "possessive thing". For example:
would read "x's value equals y's value" |
|||
|
|
|
Property operator. When reading |
|||||||
|
|
In high school, in our C class, someone decided to call these "street cred" because a->b() was better than using (*a).b() and therefore got more "street cred." To this day, whenever I see an arrow I call it street cred (e.g. a street cred b). Silly, but catchy. |
|||||||
|
|
Harkening back to the Cobol 'in' where you would say "Move 5 to b in a." Most languages today qualify things the other direction. Yet I would still read $a->b(); as "Call b in a". |
|||
|
|
|
[I found this question searching to make sure I didn't post a dup, wondering what people say] I call it "dart"; as in Since many languages use "dot" as in Since PHP uses Discussing with a co-worker a while back, we decided on "dart" as a word similar enough to "dot" to flow comfortably, but distinct enough (at least when we say it) to not be mistaken for a concatenating "dot". |
|||
|
|
|
The senior PHP developer where I work says "arrow".
When he's telling me to type the above, he'll say, "Dollar A arrow B" or for
"Dollar A arrow B parens." |
||||
|
|
|
I personally like to be verbose in expressing my code verbally. e.g.:
would read as such:
It's verbose and more time consuming, but I find if there is a reason for me to be expressing my code verbally, then I probably need to be clear as to what I'm communicating exactly. |
|||||||||||||
|