1 Star 0 Fork 0

Kozakemi/qt_calculator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.cpp 326 Bytes
一键复制 编辑 原始数据 按行查看 历史
Kozakemi 提交于 2023-09-11 11:25 . [代码]提交样式修改完毕
#include "mainwindow.h"//
#include <QApplication>
int main(int argc, char *argv[]) //argc 传参个数 argv 传参 main.exe 1 2时 argc为3 main.exe 时argc为1
{
QApplication a(argc, argv); //a对象 QApplication 类名
MainWindow w; //对象实例化
w.show(); //显示,死在此处
return a.exec();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/Kozakemi/qt_calculator.git
[email protected]:Kozakemi/qt_calculator.git
Kozakemi
qt_calculator
qt_calculator
master

搜索帮助