ctrl-c 发送 SIGINT 信号给前台进程组中的所有进程。常用于终止正在运行的程序。
ctrl-z 发送 SIGTSTP 信号给前台进程组中的所有进程,常用于挂起一个进程。
ctrl-d 不是发送信号,而是表示一个特殊的二进制值,表示 EOF。
Ctrl+Z:
一般用于输入字符串时,比如下面这个程序
#include <iostream>
#include <vector>
#include <string>
using namespace std;
int main(){
vector<string> a;
string tmp;
while (cin>>tmp){
a.push_back(tmp);
}
for (vector<string>::iterator iter = a.begin(); iter != a.end(); ++iter){
cout << *iter << endl;
}
return 0;
}
结果:
Ctrl+D(EOF):
一般用于输入数字
#include <iostream>
#include <vector>
#include <string>
using namespace std;
int main(){
vector<int> a;
int tmp;
while (cin>>tmp){
a.push_back(tmp);
}
for (vector<int>::iterator iter = a.begin(); iter != a.end(); ++iter){
cout << *iter << endl;
}
return 0;
}
结果1(用EOF):
结果2(用Ctrl+D):
Ctrl+C:
直接就终止程序了(程序和输入string的那个一样)