欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

终端对非打印字符的显示方式的有趣例子

程序员文章站 2022-05-23 21:55:25
有如下代码: #include   #include   using namespace st...

有如下代码:

#include <iostream> 
#include <string> 
using namespace std; 
int main(int argc, char** argv) 

    char buffer[32] = {0}; 
    buffer[0] = 0; 
    buffer[1] = 'e'; 
    buffer[2] = 'l'; 
    buffer[3] = 'l'; 
    buffer[4] = 'o'; 
    string s(buffer, 32); 
 
    string b = "hello"; 
    b = s + b; 
    cout << "b:"<<b << endl; 
    cout <<"s.size():"<< s.size() << endl; 
    cout <<"s:"<< s << endl; 
    cout << "s.c_str()"<<s.c_str() << endl; 
 
    return 0; 

运行结果:
b:ellohello
s.size():32
s:ello
s.c_str()

重定向标准输出至一个文件(./a.out > a.txt),用vim打开a.txt,文件内容显示如下:
  1 b:^@ello^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@hello        
  2 s.size():32
  3 s:^@ello^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@
  4 s.c_str()

 

摘自 积累浅知识的小菜一个--stay hungry, stay foolish