From: "A.Appleyard" To: DJGPP AT sun DOT soe DOT clarkson DOT edu Date: Fri, 3 Nov 1995 09:34:13 GMT Subject: Priority of long-chain expressions If I write e.g. this:- class cat{public: ........ cat operator-(cat&X){cat Y; ........ ; return Y;}; ..... }; cat Tom, Tabbins, Fluff, Puss, Mittens; in the expression (Tom - Tabbins - Fluff - Puss - Mittens) can I rely on (a) djgpp, (b) all other C++ inplementations, always obeying the calls of `-' from left to right?, i.e. as:- ((((Tom - Tabbins) - Fluff) - Puss) - Mittens)