char和int強轉

  強轉的差是48c++ #include <bits/stdc++.h> using namespace std; int main() { int t1 = 9; char t2 = 9; //int強轉爲char:強轉成該ASCII值下的char cout << char(t1) << endl; //char強轉爲int:看起來相等 c
相關文章
相關標籤/搜索