会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
acbh
博客园
首页
新随笔
联系
订阅
管理
2024年4月23日
QT信号槽机制
摘要: QT信号槽机制 例如将按钮点击信号连接到文本框的更新槽函数上 点击时按钮发出点击信号 文本框接收信号执行更新操作 下面通过一个简单的计算球体体积的例子来介绍信号槽机制: dialog.h #ifndef DIALOG_H #define DIALOG_H #include <QDialog> #in
阅读全文
posted @ 2024-04-23 23:10 acbh
阅读(20)
评论(0)
推荐(0)
2022年11月12日
Hello World
摘要: Hello World!!! #include <iostream> using namespace std; int main() { int a, b; cin >> a >> b; cout << a + b << endl; }
阅读全文
posted @ 2022-11-12 20:42 acbh
阅读(16)
评论(0)
推荐(0)
公告