案例 ''' 对话框:QDialog QMessageBox QColorDialog QFileDialog QFontDialog QInputDialog QMainWindow QWidget QDialog ''' import sys from PyQt5.QtCore import * ...
分类:
其他好文 时间:
2021-04-24 11:57:51
阅读次数:
0
案例 ''' 消息对话框:QMessageBox 1. 关于对话框 2. 错误对话框 3. 警告对话框 4. 提问对话框 5. 消息对话框 有2点差异 1. 显示的对话框图标可能不同 2. 显示的按钮是不一样的 ''' import sys from PyQt5.QtCore import * fr ...
分类:
其他好文 时间:
2021-04-24 11:55:31
阅读次数:
0
输入输出流 简介 System.in和System.oult分别代表了系统标准的输入和输出设备。 默认输入设备是:键盘,输出设备是:显示器 System.in的类型是InputStream System.out的类型是PrintStream,其是FilterOutputStream的子类 重定向:通 ...
分类:
编程语言 时间:
2021-04-24 11:52:30
阅读次数:
0
我的idea使用maven引入依赖没有成功,只能下载jar包 下载jar包地址: http://repo.e-iceblue.com/nexus/content/groups/public/e-iceblue/spire.xls.free/ pom.xml中配置jar所在路径 <dependency ...
分类:
其他好文 时间:
2021-04-23 12:25:08
阅读次数:
0
## 198. House RobberYou are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only co ...
分类:
其他好文 时间:
2021-04-23 12:11:50
阅读次数:
0
9.Processing Internal Data 9.1Numerical Calculations 类CL_ABAP_MATH,浮点数;CL_ABAP_RANDOM,获取随机数; 示例: "算术运算statements "[COMPUTE] [EXACT] result = arith_exp ...
分类:
其他好文 时间:
2021-04-23 12:07:40
阅读次数:
0
方法1 select count(1) from sys.objects where name = 'student' 方法2 SELECT table_name FROM information_schema.TABLES WHERE table_name ='student' 程序员阿飞 202 ...
分类:
数据库 时间:
2021-04-22 16:12:38
阅读次数:
0
直接安装 sudo yaourt -S glibc 如果有报错类似“ exists in filesystem”强制安装即可。 sudo yaourt -S glibc --force ...
分类:
系统相关 时间:
2021-04-22 15:40:30
阅读次数:
0
二进制水题~。 int n,m; int main() { cin>>n>>m; while(m--) { string s; cin>>s; int res=0; for(int i=0;i<s.size();i++) if(s[i] == 'n') res+=1<<(n-1-i); cout<< ...
分类:
其他好文 时间:
2021-04-22 15:39:34
阅读次数:
0
Linux系统调用表 记录下来,免得到处找 32位 int 0x80 %eax Name Source %ebx %ecx %edx %esx %edi 1 sys_exit kernel/exit.c int - - - - 2 sys_fork arch/i386/kernel/process. ...
分类:
系统相关 时间:
2021-04-22 15:36:36
阅读次数:
0