연산자Operators

less than 1 minute read

Unary Operators (Highest Precedence)

@ Address of the variable or function (returns a pointer)

not Boolean or bitwise not

Multiplicative and Bitwise Operators

* Arithmetic multiplication or set intersection

/ Floating-point division

div Integer division

mod Modulus (the remainder of integer division)

as Allows a type-checked type conversion among at runtime (part of the RTTI support)

and Boolean or bitwise and

shl Bitwise left shift

shr Bitwise right shift

 

Additive Operators

+ 더하기 (정수,실수)

- 빼기(정수,실수)

or Boolean or bitwise or

xor Boolean or bitwise exclusive or

 

Relational and Comparison Operators (Lowest Precedence)

= Test whether equal

<> Test whether not equal

< Test whether less than

> Test whether greater than

<= Test whether less than or equal to, or a subset of a set

>= Test whether greater than or equal to, or a superset of a set

in Test whether the item is a member of the set

is Test whether object is type-compatible (another RTTI operator)

 

워드프레스 위지위그가 꼬라서 못해먹겠네

Updated: