zoukankan      html  css  js  c++  java
  • 【c++】【常用函数】

    分割字符串: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);
  • 相关阅读:
    HTML5 ④
    HTML5 ③
    HTML5 ②
    HTML5 ①
    what’s this?
    第一篇
    2017年3月1号课堂笔记
    2017年2月27号课堂笔记
    2017年2月24号课堂笔记
    2017.02.15课堂笔记
  • 原文地址:https://www.cnblogs.com/zealousness/p/10151740.html
Copyright © 2011-2022 走看看