Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在这里发疯了,我保证我已经看过文档。
我在头文件中将 QTextStream 声明为成员变量,但在我的构造函数中,我想将其设置为在构造函数中转到 stdout .....但我无法获得正确的语法来让我这样做!
我想做的就是:
QTextStream m_text_out;
m_text_out = QTextStream(stdout).......
任何帮助都会很棒!
使用初始化列表。
class MyClass { public: MyClass(); private: QTextStream m_text_out; } MyClass::MyClass() : m_text_out(stdout) { }