Git Product home page Git Product logo

threaddemo's Introduction

C++多线程编程简单实例

  1. 描述:本实例实现简单的生产者-消费者模型。

    以售卖车票为背景,两个生产者向票池中放票,三个消费者从票池中取票。

    有产票总量限制,当生产者生产的票数之和等于产票总量上限时,生产者线程退出。

    当生产者线程退出之后,且票池被取空时,消费者线程退出。

    考虑三个消费者的线程优先级,因此Windows版本源码和Linux版本源码不兼容。

    使用C++11标准,使用thread类实现。

  2. 使用方式:

    • Windows下VS2017可以编译通过
    • Linux下使用如下两条命令执行:
      • g++ -std=c++11 -pthread -o ticket Ticket_Main_Linux.cpp
      • ./ticket
  3. 运行结果

    Windows运行

    Linux运行

threaddemo's People

Watchers

Albusguo avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.