线程C ++上的用户I / O.

时间:2015-05-18 18:44:01

标签: c++ multithreading boost nana

我这里有一些代码,包括一个窗口类(使用Nana C ++)和一些网络线程。但是,我似乎无法以任何方式输出给用户。我尝试使用消息框附加到文本框,打印到控制台,但它不会显示出来。这是Nana或Boost.Thread的问题吗?

如果它是Boost.Thread的问题我可以切换到std :: thread,但我不认为它会起作用。

void thread()//Let's say this function is started on a thread and the window is started on main
{
    append(L"append test");
    MsgBox(L"msgbox test"):
}

1 个答案:

答案 0 :(得分:2)

有一个Nana演示,演示了如何在其他帖子中附加文本。

#include <nana/gui.hpp>
#include <nana/gui/widgets/textbox.hpp>
#include <nana/gui/widgets/button.hpp>
#include <mutex>
#include <condition_variable>
#include <thread>

int main()
{
    using namespace nana;

    form fm(API::make_center(300, 250));

    textbox txt(fm, rectangle(10, 10, 280, 190));
    button btn(fm, rectangle(10, 220, 200, 20));
    btn.caption("append texts in other thread");

    std::mutex mutex;
    std::condition_variable condvar;
    volatile bool running = true;

    std::thread thrd([&]
    {
        while(running)
        {
            std::unique_lock<std::mutex> lock(mutex);
            condvar.wait(lock);

            txt.append(L"append a new line\n", false);

            msgbox mb(L"hello");
            mb<<L"This is a demo";
            mb.show();
        }
    });

    btn.events().click([&]
    {
        std::lock_guard<std::mutex> lock(mutex);
        condvar.notify_one();
    });

    fm.events().unload([&]
    {
        running = false;
        std::lock_guard<std::mutex> lock(mutex);
        condvar.notify_one();   
    });

    fm.show();
    exec();
    thrd.join();
}

此演示使用Nana C ++ Library 1.0.2创建,可在Windows / Linux上正常运行