1、
無符號型別和有符號型別進行比較時,無符號型別會轉換為有符號型別
無符號型別和有符號型別進行運算時,結果會轉化為有符號型別
int a=-20;//-20轉為無符號非常大
unsigned int b=10;
則a+b=-10
a>b=1 ---> a+b>0=1
2、int (*a)[10];//宣告乙個指向整形陣列的指標--->>可以讀成int[10] *a;
int* a[10]; //表示指標陣列
3、const int *a;
== int const * a;//變數型別可以和const互換位置
int* const a;
4、a%8 --》 a & 7
a/8 --> a >> 3
5、linux c
32 64
long 4 8
long double 12 16
6、優先順序
小括號() > 負號( -) > ! > 算術運算子 > 關係運算子 > && > ||
mihuyo筆試查漏補缺
1.首先是一堆考察基礎的不定項選擇 2.程式設計題兩道,一道是矩陣的順時針列印 include include include include opencv api using namespace cv using namespace std include include using namesp...
DOM查漏補缺
使用getattribute 方法只能獲取屬性的文字內容,比如script或者style就不方便了,因此建議使用屬性的方法來獲取,即elenode.attr這種形式 但是自定義的標籤屬性必須使用getattribute 方法來獲得。屬性的方法會返回undefined 修改class通過屬性名的方法是...
CSS查漏補缺
從父類繼承 padding inherit 字母大寫 小寫,首字母大寫 h1 h2 credits 字母 漢字間距 letter spacing 0.2em 文字對齊方向 text align right 鏈結下劃線aa hover 首字母 首行 p.intro first letter p.int...