CentOS (x86 64-bit system) uses boost

Source: Internet
Author: User

1. Installation of gcc,g++,make and other development environments

" Development Tools "
View Code

2. Install boost

Yum Install boost Boost-devel Boost-doc
View Code
备注:默认的安装路径在/usr/lib64目录下

3. Example

#include <boost/thread.hpp>#include<iostream>voidTask1 () {//Do stuffStd::cout <<"This is task1!"<<Std::endl; }    voidTask2 () {//Do stuffStd::cout <<"This is task2!"<<Std::endl; }    intMain (intargcChar**argv) {      using namespaceboost; Thread Thread_1=thread (TASK1); Thread Thread_2=thread (TASK2); //Do other stuffThread_2.join ();      Thread_1.join (); return 0; } 
View Code

4. Compiling

g++-i./inlcude-l./usr/lib64  asio_thread.cpp-lboost_thread-mt-  o Example
View Code

5. Run:

 is task2!   is task1!

CentOS (x86 64-bit system) uses boost

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.