2010-10-14

PureBASIC 內建運算子

摘錄自PureBasic - A Beginner's Guide for Computer Programming, written by Gary Willoughby

謝謝該書作者大方分享!

PureBASIC內建的運算子有

+數值,字串都可以用
-數值
*數值
/數值
&位元AND
|位元OR
!位元XOR
~位元NOT
<<位元左移
>>位元右移
</<=小於/小於等於
>/>=大於/大於等於
<>不等於
And邏輯And
Not邏輯Not
Or邏輯OR
XOr邏輯Xor
%取餘數
在運算中,相關順序如下
順位運算子
1(  )
2~
3<< >> % !
4|  &
5*  /
6+  -
7< <= > >= = <>
8And Or Not XOr

沒有留言: