I notice that the character/symbol '`' and '@' is not used as an operator in C/C++,
- does anyone know the reason or historically why its so?
- if its really not used, is it safe to define those symbols as another operator/statement using #define?
|
Normally,
Similarly with back-quote. And you didn't mention '$', which is sometimes allowed in identifiers. There might be a compiler-specific extension to allow such mappings, but I wouldn't use it. As to the historical reason for this, there are parts of the ISO 646 character set that are reserved to national implementations for national characters. These reserved portions include the characters that cause trouble, and the trigraphs and digraphs features in Standard C (and hence Standard C++) were added to ISO C in 1989 and 1994 respectively to provide workarounds for the problems. TrigraphsTrigraphs were added during the C89 standardization process to prevent people from, for example, having to see alphabetic characters (in Scandinavian languages) used in their C code (adapted from an example in B Stroustrup, 'Design and Evolution of C++', using a Danish terminal):
Or, in the ISO 8859-1 code set (or any of the ISO 8859-x code sets):
The trigraphs were introduced to produce a neutral format for the code:
That's not very readable, either, but it is the same for everyone.
The standard says 'there are no other trigraphs'. This is why the escape sequence '\?' is recognized (as a simple question mark - though presumably that is '??/?'). Note that the GNU Compiler Collection (GCC) does not interpret trigraphs unless you hold its hand to the fire (specify ' DigraphsThe digraphs were added in 1994, and are not as pervasive or intrusive as trigraphs; they only appear outside strings and string literals. The digraphs are:
The example using digraphs (and trigraphs):
At sign and back quote specifically?If you look at the Wikipedia URL above, you'll see that both '@' and '`' are sometimes replaced by national characters - and hence not good identifiers. An additional reason for not using '@' is that at the time C was introduced, '#" was the default erase character and '@' was the kill (line erase) character for terminals. So, you had to remember to escape them. Since '#' only appeared at the beginning of a line, it wasn't too much of a problem (using '#' and '##' came much, much later - standardization again), but '@' would have wiped out all the preceding typing on the line. And this is the days before 'vi' - 'ed is the the standard Unix editor'. |
|||||
|
|
With regard to C: A An identifier may consist of I don't know what the situation is with C++. |
|||
|
|
It is probably safe, but it's almost definitely a really bad idea. Since On a side note, Objective-C uses |
|||||||||
|
@is used extensively in Objective-C (a superset of C). – KennyTM Mar 6 '10 at 18:09