字元與整數的關聯在于ASCII碼:每一個常用字元都對應一個-128 ~ 127 的數字,二者之間是可以進行互相轉換的:
#include <iostream>
using namespace std;
int main(){
char wordOne = 'a';
cout << int(wordOne) << endl;
int number = 66;
cout << char(number) << endl;
return 0;
}
運作的結果為:
97
B
基于字元和數字之間的對應關系,我們可以直接對字元進行運算:
#include <iostream>
using namespace std;
int main(){
int a = 'B'-'A';
int b = 'A'*'B';
char c = 'A'+2;
cout << a << endl;
cout << b << endl;
cout << c << endl;
return 0;
}
運作的結果為:
1
4290
C
ASCII碼可以參考下表:
Bin(二進制) | Oct(八進制) | Dec(十進制) | Hex(十六進制) | 縮寫/字元 | 解釋 |
0000 0000 | 00 | 0x00 | NUL(null) | 空字元 | |
0000 0001 | 01 | 1 | 0x01 | SOH(start of headline) | 标題開始 |
0000 0010 | 02 | 2 | 0x02 | STX (start of text) | 正文開始 |
0000 0011 | 03 | 3 | 0x03 | ETX (end of text) | 正文結束 |
0000 0100 | 04 | 4 | 0x04 | EOT (end of transmission) | 傳輸結束 |
0000 0101 | 05 | 5 | 0x05 | ENQ (enquiry) | 請求 |
0000 0110 | 06 | 6 | 0x06 | ACK (acknowledge) | 收到通知 |
0000 0111 | 07 | 7 | 0x07 | BEL (bell) | 響鈴 |
0000 1000 | 010 | 8 | 0x08 | BS (backspace) | 倒退 |
0000 1001 | 011 | 9 | 0x09 | HT (horizontal tab) | 水準制表符 |
0000 1010 | 012 | 10 | 0x0A | LF (NL line feed, new line) | 換行鍵 |
0000 1011 | 013 | 11 | 0x0B | VT (vertical tab) | 垂直制表符 |
0000 1100 | 014 | 12 | 0x0C | FF (NP form feed, new page) | 換頁鍵 |
0000 1101 | 015 | 13 | 0x0D | CR (carriage return) | Enter鍵 |
0000 1110 | 016 | 14 | 0x0E | SO (shift out) | 不用切換 |
0000 1111 | 017 | 15 | 0x0F | SI (shift in) | 啟用切換 |
0001 0000 | 020 | 16 | 0x10 | DLE (data link escape) | 資料鍊路轉義 |
0001 0001 | 021 | 17 | 0x11 | DC1 (device control 1) | 裝置控制1 |
0001 0010 | 022 | 18 | 0x12 | DC2 (device control 2) | 裝置控制2 |
0001 0011 | 023 | 19 | 0x13 | DC3 (device control 3) | 裝置控制3 |
0001 0100 | 024 | 20 | 0x14 | DC4 (device control 4) | 裝置控制4 |
0001 0101 | 025 | 21 | 0x15 | NAK (negative acknowledge) | 拒絕接收 |
0001 0110 | 026 | 22 | 0x16 | SYN (synchronous idle) | 同步空閑 |
0001 0111 | 027 | 23 | 0x17 | ETB (end of trans. block) | 結束傳輸塊 |
0001 1000 | 030 | 24 | 0x18 | CAN (cancel) | 取消 |
0001 1001 | 031 | 25 | 0x19 | EM (end of medium) | 媒介結束 |
0001 1010 | 032 | 26 | 0x1A | SUB (substitute) | 代替 |
0001 1011 | 033 | 27 | 0x1B | ESC (escape) | 換碼(溢出) |
0001 1100 | 034 | 28 | 0x1C | FS (file separator) | 檔案分隔符 |
0001 1101 | 035 | 29 | 0x1D | GS (group separator) | 分組符 |
0001 1110 | 036 | 30 | 0x1E | RS (record separator) | 記錄分隔符 |
0001 1111 | 037 | 31 | 0x1F | US (unit separator) | 單元分隔符 |
0010 0000 | 040 | 32 | 0x20 | (space) | 空格 |
0010 0001 | 041 | 33 | 0x21 | ! | 歎号 |
0010 0010 | 042 | 34 | 0x22 | “ | 雙引号 |
0010 0011 | 043 | 35 | 0x23 | # | 井号 |
0010 0100 | 044 | 36 | 0x24 | $ | 美元符 |
0010 0101 | 045 | 37 | 0x25 | % | 百分号 |
0010 0110 | 046 | 38 | 0x26 | & | 和号 |
0010 0111 | 047 | 39 | 0x27 | ‘ | 閉單引号 |
0010 1000 | 050 | 40 | 0x28 | ( | 開括号 |
0010 1001 | 051 | 41 | 0x29 | ) | 閉括号 |
0010 1010 | 052 | 42 | 0x2A | * | 星号 |
0010 1011 | 053 | 43 | 0x2B | + | 加号 |
0010 1100 | 054 | 44 | 0x2C | , | 逗号 |
0010 1101 | 055 | 45 | 0x2D | – | 減号/破折号 |
0010 1110 | 056 | 46 | 0x2E | . | 句号 |
0010 1111 | 057 | 47 | 0x2F | / | 斜杠 |
0011 0000 | 060 | 48 | 0x30 | 字元0 | |
0011 0001 | 061 | 49 | 0x31 | 1 | 字元1 |
0011 0010 | 062 | 50 | 0x32 | 2 | 字元2 |
0011 0011 | 063 | 51 | 0x33 | 3 | 字元3 |
0011 0100 | 064 | 52 | 0x34 | 4 | 字元4 |
0011 0101 | 065 | 53 | 0x35 | 5 | 字元5 |
0011 0110 | 066 | 54 | 0x36 | 6 | 字元6 |
0011 0111 | 067 | 55 | 0x37 | 7 | 字元7 |
0011 1000 | 070 | 56 | 0x38 | 8 | 字元8 |
0011 1001 | 071 | 57 | 0x39 | 9 | 字元9 |
0011 1010 | 072 | 58 | 0x3A | : | 冒号 |
0011 1011 | 073 | 59 | 0x3B | ; | 分号 |
0011 1100 | 074 | 60 | 0x3C | < | 小于 |
0011 1101 | 075 | 61 | 0x3D | = | 等号 |
0011 1110 | 076 | 62 | 0x3E | > | 大于 |
0011 1111 | 077 | 63 | 0x3F | ? | 問号 |
0100 0000 | 0100 | 64 | 0x40 | @ | 電子郵件符号 |
0100 0001 | 0101 | 65 | 0x41 | A | 大寫字母A |
0100 0010 | 0102 | 66 | 0x42 | B | 大寫字母B |
0100 0011 | 0103 | 67 | 0x43 | C | 大寫字母C |
0100 0100 | 0104 | 68 | 0x44 | D | 大寫字母D |
0100 0101 | 0105 | 69 | 0x45 | E | 大寫字母E |
0100 0110 | 0106 | 70 | 0x46 | F | 大寫字母F |
0100 0111 | 0107 | 71 | 0x47 | G | 大寫字母G |
0100 1000 | 0110 | 72 | 0x48 | H | 大寫字母H |
0100 1001 | 0111 | 73 | 0x49 | I | 大寫字母I |
01001010 | 0112 | 74 | 0x4A | J | 大寫字母J |
0100 1011 | 0113 | 75 | 0x4B | K | 大寫字母K |
0100 1100 | 0114 | 76 | 0x4C | L | 大寫字母L |
0100 1101 | 0115 | 77 | 0x4D | M | 大寫字母M |
0100 1110 | 0116 | 78 | 0x4E | N | 大寫字母N |
0100 1111 | 0117 | 79 | 0x4F | O | 大寫字母O |
0101 0000 | 0120 | 80 | 0x50 | P | 大寫字母P |
0101 0001 | 0121 | 81 | 0x51 | Q | 大寫字母Q |
0101 0010 | 0122 | 82 | 0x52 | R | 大寫字母R |
0101 0011 | 0123 | 83 | 0x53 | S | 大寫字母S |
0101 0100 | 0124 | 84 | 0x54 | T | 大寫字母T |
0101 0101 | 0125 | 85 | 0x55 | U | 大寫字母U |
0101 0110 | 0126 | 86 | 0x56 | V | 大寫字母V |
0101 0111 | 0127 | 87 | 0x57 | W | 大寫字母W |
0101 1000 | 0130 | 88 | 0x58 | X | 大寫字母X |
0101 1001 | 0131 | 89 | 0x59 | Y | 大寫字母Y |
0101 1010 | 0132 | 90 | 0x5A | Z | 大寫字母Z |
0101 1011 | 0133 | 91 | 0x5B | [ | 開方括号 |
0101 1100 | 0134 | 92 | 0x5C | \ | 反斜杠 |
0101 1101 | 0135 | 93 | 0x5D | ] | 閉方括号 |
0101 1110 | 0136 | 94 | 0x5E | ^ | 脫字元 |
0101 1111 | 0137 | 95 | 0x5F | _ | 下劃線 |
0110 0000 | 0140 | 96 | 0x60 | ` | 開單引号 |
0110 0001 | 0141 | 97 | 0x61 | a | 小寫字母a |
0110 0010 | 0142 | 98 | 0x62 | b | 小寫字母b |
0110 0011 | 0143 | 99 | 0x63 | c | 小寫字母c |
0110 0100 | 0144 | 100 | 0x64 | d | 小寫字母d |
0110 0101 | 0145 | 101 | 0x65 | e | 小寫字母e |
0110 0110 | 0146 | 102 | 0x66 | f | 小寫字母f |
0110 0111 | 0147 | 103 | 0x67 | g | 小寫字母g |
0110 1000 | 0150 | 104 | 0x68 | h | 小寫字母h |
0110 1001 | 0151 | 105 | 0x69 | i | 小寫字母i |
0110 1010 | 0152 | 106 | 0x6A | j | 小寫字母j |
0110 1011 | 0153 | 107 | 0x6B | k | 小寫字母k |
0110 1100 | 0154 | 108 | 0x6C | l | 小寫字母l |
0110 1101 | 0155 | 109 | 0x6D | m | 小寫字母m |
0110 1110 | 0156 | 110 | 0x6E | n | 小寫字母n |
0110 1111 | 0157 | 111 | 0x6F | o | 小寫字母o |
0111 0000 | 0160 | 112 | 0x70 | p | 小寫字母p |
0111 0001 | 0161 | 113 | 0x71 | q | 小寫字母q |
0111 0010 | 0162 | 114 | 0x72 | r | 小寫字母r |
0111 0011 | 0163 | 115 | 0x73 | s | 小寫字母s |
0111 0100 | 0164 | 116 | 0x74 | t | 小寫字母t |
0111 0101 | 0165 | 117 | 0x75 | u | 小寫字母u |
0111 0110 | 0166 | 118 | 0x76 | v | 小寫字母v |
0111 0111 | 0167 | 119 | 0x77 | w | 小寫字母w |
0111 1000 | 0170 | 120 | 0x78 | x | 小寫字母x |
0111 1001 | 0171 | 121 | 0x79 | y | 小寫字母y |
0111 1010 | 0172 | 122 | 0x7A | z | 小寫字母z |
0111 1011 | 0173 | 123 | 0x7B | { | 開花括号 |
0111 1100 | 0174 | 124 | 0x7C | | | 垂線 |
0111 1101 | 0175 | 125 | 0x7D | } | 閉花括号 |
0111 1110 | 0176 | 126 | 0x7E | ~ | 波浪号 |
0111 1111 | 0177 | 127 | 0x7F | DEL (delete) | 删除 |
C++中的字元串起源于C語言,字元串實際上是使用null字元\0終止的一堆字元數組。是以,一個以null結尾的字元串,包含了組成字元串的字元。是以,字元數組的長度至少要比字元串的長度多了1。
我們可以用如下所示的代碼來建立一個字元數組:
#include <iostream>
using namespace std;
int main ()
{
char site[6] = {'G', 'e', 'e', 'k', 's', '\0'};
cout << site << endl;
return 0;
}
運作的結果為:
Geeks
同樣我們也可以這樣寫:
#include <iostream>
using namespace std;
int main ()
{
char site[] = "Geeks";
cout << site << endl;
return 0;
}
運作的結果為:
Geeks
是以,我們也可以像是對待數組一樣,通過索引來對制定位置的字元進行通路
如果我們要求取一個輸入的字元串中的數字的數量和字元的數量,我們可以寫一段如下所示的代碼:
#include <iostream>
#include <cstdio>
using namespace std;
int main(){
char c;
int number =0, chars = 0;
while(cin>>c){
if (c>='0' && c<='9') number++;
else if (c >= 'A' && c<='Z' || c >= 'a' && c<= 'z') chars++;
}
printf("nums: %d\ncahrs: %d\n",number,chars);
return 0;
}
假設我們的輸入是:
123654qwer
運作的結果為:
nums: 6
cahrs: 4
C++中有着大量的函數可以用來操作以null結尾的字元串:
- strcpy(s1,s2):複制字元串s2到字元串s1
- strcat(s1,s2):連接配接字元串s2道字元串s1的末尾,這個操作也可以用+号來表示
- strlen(s1):可以傳回字元串s1的長度
- strcmp(s1,s2):如果s1和s2是相同的,則傳回0,;如果s1<s2則傳回值小于0;如果s1>s2則傳回值大于0
我們可以寫如下所示的代碼來進行實踐:
#include <iostream>
#include <cstring>
using namespace std;
int main ()
{
char str1[13] = "Say";
char str2[13] = "Hello";
char str3[13];
int len ;
// 複制 str1 到 str3
strcpy( str3, str1);
cout << "strcpy( str3, str1) : " << str3 << endl;
// 連接配接 str1 和 str2
strcat( str1, str2);
cout << "strcat( str1, str2): " << str1 << endl;
// 連接配接後,str1 的總長度
len = strlen(str1);
cout << "strlen(str1) : " << len << endl;
return 0;
}
運作的結果為:
strcpy( str3, str1) : Say
strcat( str1, str2): SayHello
strlen(str1) : 8
字元串數組可以從制定的位置來輸入字元:
#include <iostream>
#include <cstring>
using namespace std;
int main ()
{
char str[100];
//數組名即為數組的第一個元素的指針
cin >> str+1;
cout << str[1] << endl;
return 0;
}
輸入為:
qwerty
運作的結果為:
q
字元串的讀寫如下所示:
#include <iostream>
#include <string>
using namespace std;
int main(){
string s1, s2;
cin >> s1>> s2;
cout << s1 << s2 << end;
return 0;
}
需要注意的是,printf并不能夠直接輸出string,是以需要寫成printf(“%s”, s.c_str())才可以。
如果我們需要讀入一整行,則可以使用:
#include <iostream>
#include <string>
using namespace std;
int main(){
string s;
getline(cin,s);
cout << s << endl;
return 0;
}