文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>c++中string与int之间相互转换

c++中string与int之间相互转换

时间:2010-09-13  来源:tastesweet

std::string char2str( int in_ch=-1)
    {        
        char ch_buff[4];
        memset(ch_buff,0,4);    
        sprintf(ch_buff,"%d",in_ch);
        //itoa( in_ch,ch_buff,4);

        std::string str(ch_buff);        
        return str;
    }

    char str2char(std::string str)
    {
        char ret=0;
        if( !str.empty() )
        {
            ret= atoi( str.c_str() );
            return ret;
        }
        return -1;
    }


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载