Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I like scala's propose of operator precedence but in some rare case unmodified rules may be inconvenient because you have restrictions in naming your methods. Is there in scala ways to define another rules for a class/file/etc? If not would it be resolved in future?

share|improve this question
2  
Related mailing list thread: scala-programming-language.1934581.n4.nabble.com/… – retronym May 27 '10 at 19:53

2 Answers

up vote 34 down vote accepted

Operator precedence fixed in the Scala Reference - 6.12.3 Infix Operations

(all letters)
|
^
&
< >
= !
:
+ -
* / %
(all other special characters)

and it's not very probable that it will change. It will probably create more problems than it fixes. If you're used the normal operator precedence changing it for one class will be quite confusing.

share|improve this answer
1  
Warning, this list is incorrect as < and > have higher precedence than =. See article.gmane.org/gmane.comp.lang.scala/24402 and stackoverflow.com/questions/7022207/… – huynhjl Sep 29 '11 at 14:10
@huynhjl from the cited reference: "There’s one exception to this rule, which concerns assignment operators(§6.12.4). The precedence of an assigment operator is the same as the one of simple assignment (=). That is, it is lower than the precedence of any other operator." §6.12.4 describes an assignment operator as one ending in "=". So the list above is incomplete, rather than incorrect. – Luigi Plinge Sep 29 '11 at 14:35
1  
@Luigi Plinge, === is not an assignment operator because there in an exception: an operator ending in = is an assignment operator unless the operator also starts with an equals character. Look at the gmane thread and the other link, Martin himself indicated that the SLS needed an update. I cannot see an update yet. – huynhjl Sep 29 '11 at 15:14

There is no such ability and there is little likelihood of it being added in the forseeable future.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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