码迷,mamicode.com
首页 > 编程语言 > 详细

【c++】【常用函数】

时间:2018-12-20 20:32:54      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:The   绝对值   ...   lex   double   var   字符串   htm   ras   

分割字符串:https://www.cnblogs.com/zealousness/p/9971709.html

 

字符串比较:https://www.cnblogs.com/zealousness/p/10140189.html

 

求绝对值:

#include<cmath>
std::cout<<abs(-2)<<std::endl;

 

开平方:

#include<cmath>
std::cout<<sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2))<<std::endl;

 

异常处理:

try{
    ...
}catch(std::exception e){
    ...
}

技术分享图片

 

double 转字符串

// The C way:
char buffer[32];
snprintf(buffer, sizeof(buffer), "%g", myDoubleVar);

// The C++03 way:
std::ostringstream sstream;
sstream << myDoubleVar;
std::string varAsString = sstream.str();

// The C++11 way:
std::string varAsString = std::to_string(myDoubleVar);

// The boost way:
std::string varAsString = boost::lexical_cast<std::string>(myDoubleVar);

 

【c++】【常用函数】

标签:The   绝对值   ...   lex   double   var   字符串   htm   ras   

原文地址:https://www.cnblogs.com/zealousness/p/10151740.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!