Ad alanları
Türevler
Eylemler

C++ Operatör Öncelikleri

cppreference.com sitesinden
< cpp‎ | language


Bu listede öncelik sırası yukarıdan aşağıya doğru sıralanmıştır. En üstte bulunan operatörler en yüksek önceliğe, en altta bulunan operatörler en düşük önceliğe sahiptir. Aynı grup içindeki operatörler eşit önceliğe sahiptir. Aksi belirtilmedikçe soldan-sağa doğru değerlendirilirler.

Operatör Açıklama Örnek Aşırı Yükleme
__**Group 1**__ \\ (no associativity)
:: Kapsam çözünürlük operatörü Class::age = 2; Hayır
__**Group 2**__
() Fonksiyon çağrısı isdigit('1') Evet
() Member initalization c_tor(int x, int y) : _x(x), _y(y*10){}; Evet
[] Dizi erişim operatörü array[4] = 2; Evet
%%->%% İşaretçi üye erişim operatörü %%ptr->age = 34;%% Evet
. Nesne üye erişim operatörü obj.age = 34; Hayır
++ Sondan Arttırma operatörü %%for( int i = 0; i < 10; i++ ) cout << i;%% Evet
%%--%% Sondan Azaltma operatörü %%for( int i = 10; i > 0; i-- ) cout << i;%% Evet
const_cast Special cast const_cast<type_to>(type_from); Hayır
dynamic_cast Special cast dynamic_cast<type_to>(type_from); Hayır
static_cast Special cast static_cast<type_to>(type_from); Hayır
reinterpret_cast Special cast reinterpret_cast<type_to>(type_from); Hayır
typeid Çalışma zamanı tür bilgisi cout << typeid(var).name(); \\ cout << typeid(type).name(); Hayır
**Group 3**\\ (right-to-left associativity)
! Mantıksal Değil operatörü if( !done ) ... Evet
not Alternate spelling for !
~ Bitwise complement flags = ~flags; Evet
compl Alternate spelling for ~
++ Önden Arttırma operatörü %%for( i = 0; i < 10; ++i ) cout << i;%% Evet
%%--%% Önden Azaltma operatörü %%for( i = 10; i > 0; --i ) cout << i;%% Evet
- Unary minus int i = -1; YES
+ Unary plus int i = +1; YES
* Dereference int data = *intPtr; YES
& Address of int *intPtr = &data; YES
new Dynamic memory allocation long *pVar = new long; \\ MyClass *ptr = new MyClass(args); YES
new [] Dynamic memory allocation of array long *array = new long[n]; YES
delete Deallocating the memory delete pVar; YES
delete [] Deallocating the memory of array delete [] array; YES
(type) Cast to a given type int i = (int) floatNum; YES
sizeof Return size of an object or type int size = sizeof floatNum; \\ int size = sizeof(float); NO
**Group 4**
%%->*%% Member pointer selector %%ptr->*var = 24;%% YES
.* Member object selector obj.*var = 24; NO
**Group 5**
* Multiplication int i = 2 * 4; YES
/ Division float f = 10.0 / 3.0; YES
% Modulus int rem = 4 % 3; YES
**Group 6**
+ Addition int i = 2 + 3; YES
- Subtraction int i = 5 - 1; YES
**Group 7**
%%<<%% Bitwise shift left %%int flags = 33 << 1;%% YES
%%>>%% Bitwise shift right %%int flags = 33 >> 1;%% YES
**Group 8**
< Comparison less-than if( i < 42 ) ... YES
%%<=%% Comparison less-than-or-equal-to %%if( i <= 42 ) ...%% YES
> Comparison greater-than if( i > 42 ) ... YES
%%>=%% Comparison greater-than-or-equal-to %%if( i >= 42 ) ...%% YES
**Group 9**
%%==%% Comparison equal-to %%if( i == 42 ) ...%% YES
eq Alternate spelling for %%==%%
!= Comparison not-equal-to if( i != 42 ) ... YES
not_eq Alternate spelling for !=
**Group 10**
& Bitwise AND flags = flags & 42; YES
bitand Alternate spelling for &
**Group 11**
%% %% Bitwise exclusive OR (XOR) %%flags = flags 42;%% YES
xor Alternate spelling for %% %%
**Group 12**
%% %% Bitwise inclusive (normal) OR %%flags = flags 42;%% YES
bitor Alternate spelling for %% %%
**Group 13**
&& Logical AND if( conditionA && conditionB ) ... YES
and Alternate spelling for &&
**Group 14**
%% %% Logical OR %%if( conditionA conditionB ) ...%% YES
or Alternate spelling for %% %%
**Group 15**\\ (right-to-left associativity)
? : Ternary conditional (if-then-else) int i = (a > b) ? a : b; NO
**Group 16**\\ (right-to-left associativity)
= Assignment operator int a = b; YES
+= Increment and assign a += 3; YES
-= Decrement and assign b -= 4; YES
*= Multiply and assign a *= 5; YES
/= Divide and assign a /= 2; YES
%= Modulo and assign a %= 3; YES
&= Bitwise AND and assign flags &= new_flags; YES
and_eq Alternate spelling for &=
%% =%% Bitwise exclusive or (XOR) and assign %%flags = new_flags;%% YES
xor_eq Alternate spelling for %% =%%
%% =%% Bitwise normal OR and assign %%flags = new_flags;%% YES
or_eq Alternate spelling for %% =%%
%%<<=%% Bitwise shift left and assign %%flags <<= 2;%% YES
%%>>=%% Bitwise shift right and assign %%flags >>= 2;%% YES
**Group 17**
throw throw exception throw EClass("Message"); NO
**Group 18**
, Sequential evaluation operator for( i = 0, j = 0; i < 10; i++, j++ ) ... YES

[düzenle] Order of Evaluation and of Side Effects

One important aspect of C++ that is related to operator precedence is the order of evaluation and the order of side effects in expressions. In some circumstances, the order in which things happen is not defined. For example, consider the following code:

    float x = 1;
    x = x / ++x;

The value of x is not guaranteed to be consistent across different compilers, because it is not clear whether the computer should evaluate the left or the right side of the division first. Depending on which side is evaluated first, x could take a different value.

Furthermore, while ++x evaluates to x+1, the side effect of actually storing that new value in x could happen at different times, resulting in different values for x.

The bottom line is that expressions like the one above are horribly ambiguous and should be avoided at all costs. When in doubt, break a single ambiguous expression into multiple expressions to ensure that the order of evaluation is correct.

[düzenle] Overloading of Operators

Overloading of operators can be very useful and very dangerous. On one hand overloading operators for a class you have created can help with logistics and readability of code. On the other you can overload an operator in such a way it can either obfuscate or just downright break your program. Use carefully.

There are two ways to over load an operator: global function or class member.

Example of overloading with a global function:

     ostream & operator<< (ostream & os, const myClass & rhs);

But to be able to reach any private data within a user defined class you have to declare the global function as a friend within the definition of the class.

Example:

     class myClass {
 
       // Gives the operator<< function access to 'myData'
       // (this declaration should not go in public, private or protected)
       friend ostream & operator<< (ostream & lhs, const myClass & rhs);
 
       private:
         int myData;
     }

Overloading with a class member can be done as follows:

     class myClass {
 
       public:
         // The left hand side of this operator is  a pointer to 'this'.
         int operator+ (const myClass & rhs);
 
       private:
         int myData;
     }