在学习TCP服务器例程中,在编译完成后遇到这段粉红色文字
while parsing target library list: not well-formed (invalid token)
主要问题在于信号连接有问题
源码中SIGNAL的disconnected()不能被编译器正确识别
connect(this,SIGNAL(disconnected()),this,SLOT(slotdisconnected()));改成:
connect(this,SIGNAL(QAbstractSocket::disconnected()),this,SLOT(slotdisconnected()));
问题就解决了