Specific operators

Which are the specific operators to c++?
http://en.wikipedia.org/wiki/Operators_in_C_and_C%2B%2B
http://en.cppreference.com/w/c/language/operator_precedence
http://en.cppreference.com/w/cpp/language/operator_precedence

1
2
3
4
5
6
7
8
9
10
::
new new[]
delete delete[]
throw
.* ->*
static_cast
dynamic_cast
const_cast
reinterpret_cast
typeid()
Scope resolution
Dynamic memory allocation
Dynamic memory deallocation
Throw operator (for exceptions)
Pointer to member
\
 | Casts
 |
/
RTTI (Run-Time Type Information)

Last edited on
Topic archived. No new replies allowed.