C ++生产者 - 消费者11

时间:2015-09-17 18:24:40

标签: c++ multithreading c++11 consumer producer

我开始学习线程操作,并开始使用一个简单的程序来生成随机大写字母。这些字母是随机生成的,并通过生产者添加到char数组中,任何添加的都以小写形式输出。消费者只需输出char数组中的常规大写字母。到目前为止,我有以下内容:

#include <iostream>           
#include <thread>             
#include <mutex>              
#include <condition_variable>
#include <random>

std::mutex mtx;
std::condition_variable cv;

int count = 0, buff_size = 0;
char* buff;

int random_int(int lower_bound) {
    std::random_device seed;
    std::mt19937 generator(seed());
    std::uniform_int_distribution<int> dist(lower_bound, std::nextafter(26, DBL_MAX));

    return dist(generator);
}

char random_char(int lower_bound) {
    return 'A' + (random_int(lower_bound) % 26);
}

/* Consumer

Reads characters from the buffer and prints them.

*/
void consume(int job) {
    std::unique_lock<std::mutex> lck(mtx);

    while (count == 0) {
        cv.wait(lck);
    }

    /*
    job + 1 = Running
    job = Ready
    */
    for (int i = 0; i < buff_size; i++) {
        std::cout << buff[i] << std::endl;
    }

    count--;
}

/* Producer

Randomly generates letters at (pos > buff_size & pos <= 26),
inserts them at the next available position in the buffer,
and then prints out the lowercase form of the inputted letter.

*/
void produce(int job) {
    std::unique_lock<std::mutex> lck(mtx);

    for (int i = 0; i < buff_size; i++) {
        buff[i] = random_char(buff_size);
        std::cout << tolower(buff[i]) << std::endl;
    }

    count++;
    cv.notify_one();
}

int main() {
    int buf_size = 0;

    std::cout << "The Producer-Consumer Problem (in C++11!)" << std::endl << "Enter the buffer size: ";
    std::cin >> buf_size;

    if (buf_size > 0 && buf_size <= 26) {
        // set the buffer size
        buff_size = buf_size;
        buff = new char[buff_size];
    }
    else {
        // rage quit
        exit(1);
    }

    std::thread production[10], processed[10];

    /* Initialize the arrays */
    for (int order = 0; order < buff_size; order++) {
        production[order] = std::thread(produce, order);
        processed[order] = std::thread(consume, order);
    }

    /* Join the threads to the main threads */
    for (int order = 0; order < buff_size; order++) {
        processed[order].join();
        production[order].join();
    }

    // free the allocated memory
    delete[] buff;
}

然而,我的输出是大写字母和随机数的混合。怎么了?这是我第一次尝试,所以要温柔。 :)

1 个答案:

答案 0 :(得分:3)

  

输出是大写字母和随机数的混合。

见zch评论。我认为他的意思是:

而不是:

std::cout << tolower(buff[i]) << std::endl;

std::cout << char(tolower(buff[i])) << std::endl;

std::cout << (char)tolower(buff[i]) << std::endl;

因为C ++标签,你可能应该使用static_cast

std::cout << static_cast<char>(tolower(buff[i])) << std::endl;