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.
宣言を確認してください。書いQTcpSocket socket;た場合は、ポインターではなくオブジェクトを宣言します。この場合、 で構築することはできませんnew。
QTcpSocket socket;
new
あなたは宣言するべきですQTcpSocket* socket;
QTcpSocket* socket;