介紹C++的運算子(Operator), 一元運算子, 二元運算子, 左結合性(Left to Right) ... bool a = 3 < 5; // a=true bool a = 5 < 3+4; // a = true,先做3+4=7,再做5<7的 ...
確定! 回上一頁