
VS2010中CLR中string类型转换成C++的int类型
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励30(财富值+成长值)
3个回答
展开全部
有这样的库函数的
头文件 stdlib.h
字符串转换函数 函数列表
函数用途 函数名
字符串转换为整数 atoi
例程:
#include <stdlib.h>
#include <stdio.h>
int main(void)
{
int n;
char *str = "12345.67";
n = atoi(str);
printf("string = %s integer = %d\n", str, n);
return 0;
}
头文件 stdlib.h
字符串转换函数 函数列表
函数用途 函数名
字符串转换为整数 atoi
例程:
#include <stdlib.h>
#include <stdio.h>
int main(void)
{
int n;
char *str = "12345.67";
n = atoi(str);
printf("string = %s integer = %d\n", str, n);
return 0;
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
int::Parse(string)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
atoi,atol函数
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询