开发平台(Platform): (Ex: Win10, Linux, ...)
Qt5.6.2
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
VS 2015
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
问题(Question):
按照网站的教学做一个push buttom
在mainwindow.pp里增加一行setText
然后编译就出问题
喂入的资料(Input):
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
ui->pushButton->setText("新窗口");
}
MainWindow::~MainWindow()
{
delete ui;
}
预期的正确结果(Expected Output):
打开来视窗中间一个按钮
然后中文是乱码
错误结果(Wrong Output):
D:\QT\nWindows\nWindows\mainwindow.cpp:-1: warning: C4819: 档案含有无法在目前
字码页 (950) 中表示的字符。请以 Unicode 格式储存盘案以防止资料遗失
D:\QT\nWindows\nWindows\mainwindow.cpp:9: error: C2001: 常数中包含新行字符
D:\QT\nWindows\nWindows\mainwindow.cpp:10: error: C2059: 语法错误: '}'
程式码(Code):(请善用置底文网页, 记得排版)
补充说明(Supplement):
教学的Qt版本是4.8.1
是因为版本的问题吗?