C++ 标准学习--基础类型的初始化方式

发布时间:2024年01月11日

#include <iostream>
#include <sstream>
#include<cstring>

int main()
{
? ? ? ? int val = int();
? ? ? ? char ch = char();
? ? ? ? string str = string();

? ? ? ? cout << val << endl;
? ? ? ? cout << "char is: " << ch << endl;
? ? ? ? cout << (int)ch << endl;
? ? ? ? cout << "string is: " << str << endl;

????????cout << "string size: " << strlen(str.c_str()) << endl;

? ? ? ? stringstream ?itost;
? ? ? ? itost << str;
? ? ? ? int x;
? ? ? ? itost >> x;
? ? ? ? cout << "to i: "<< x << endl;

? ? ? ? cout << stoi(str.c_str()) << endl;
? ? ? ? return 0;
}

输出结果为:

文章来源:https://blog.csdn.net/baidu_16271159/article/details/135498317
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。