up vote 4 down vote favorite
share [g+] share [fb]

I read some java source code which including Scala source code.

I found Nil.$colon$colon(Object arg)

What does keywords $colon mean? And what does this line mean?

link|improve this question

feedback

1 Answer

up vote 12 down vote accepted

$colon is a mangling for the symbol :. Since : (and other letters) is an illegal letter in java for method names but allowed in scala, a strategy is needed to encode it into a legal name. Hence, the $colon

Here your code translate to arg :: Nil which adds arg to the empty list, constructing a List with arg as single element.

link|improve this answer
Since I understand your answer, I would like to ask: What does 'mangling' mean exactly? – enguerran Oct 2 '09 at 9:11
3  
It basically means having a different identifier used for the runtime than is present in the source code. See en.wikipedia.org/wiki/Name_mangling . – David Winslow Oct 4 '09 at 22:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.