String用於存儲字符串。其實string是壹個char的數組,但是裏面的元素在數組的末尾多了壹個' \ 0 ',表示結束。
例如,字符串abcd
char a[]={'a ',' b ',' c ',' d ',' \ 0 ' };
是等價的。