boost 1.6.2 설치 및 검증

558 단어 boost
boost 라 이브 러 리 와 헤더 파일 설치http://www.boost.org/ 
1. tar -jxvf boost_1_62_0.tar.bz2
2. cd boost_1_62_0/
3. sudo ./bootstrap.sh
4. sudo ./b2 install
인증:
#include 
#include 
int main()
{
        using boost::lexical_cast;
        int a = lexical_cast("123");
        double b = lexical_cast("123.12");
        std::cout<

컴 파일:
g++ test.cpp -I/usr/local/include/boost/ -L/usr/local/lib/ -o test
./test
123 123.12

좋은 웹페이지 즐겨찾기