Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi,all.I am a newbiee,Can someone tell me that how to initilize a const QStringlist?Thanks for your help!
The constructor can take a normal c++ initializer list. @ class Test { public: Test() : _list { "hello", "my", "name" } {} private: const QStringList _list; } @