博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
int to string & string to int
阅读量:5051 次
发布时间:2019-06-12

本文共 317 字,大约阅读时间需要 1 分钟。

#include "stdafx.h"#include 
#include 
using namespace std;void main(){    // int 转 string    stringstream ss;    int n = 123;    string str;    ss<
>str;    // string 转 int    str = "456";    n = atoi(str.c_str());}

转载于:https://www.cnblogs.com/nnmaitian/p/7730333.html

你可能感兴趣的文章
搜索引擎选择: Elasticsearch与Solr
查看>>
JAVA设计模式之简单工厂模式与工厂方法模式
查看>>
③面向对象程序设计——封装
查看>>
【19】AngularJS 应用
查看>>
Spring
查看>>
Linux 系统的/var目录
查看>>
Redis学习---Redis操作之其他操作
查看>>
WebService中的DataSet序列化使用
查看>>
BZOJ 1200 木梳
查看>>
【Linux】【C语言】菜鸟学习日志(一) 一步一步学习在Linxu下测试程序的运行时间...
查看>>
hostname
查看>>
SpringBoot使用其他的Servlet容器
查看>>
关于cookie存取中文乱码问题
查看>>
k8s架构
查看>>
select 向上弹起
查看>>
mysql 多表管理修改
查看>>
group by order by
查看>>
bzoj 5252: [2018多省省队联测]林克卡特树
查看>>
https 学习笔记三
查看>>
Oracle学习之简单查询
查看>>