C/C++中字符定義Char a = 'C' //這里是單引號Char a = "C"Char a[] = "C" 這三個有什么區別?第二行是錯誤的嗎?如果錯的應該改為:Char* a = "C"或者 string a = "C" 對嗎? 查看完整描述