本节我们为QT Designer生成的UI界面添加图标和窗口标题。
分类:
其他好文 时间:
2020-01-11 09:46:58
阅读次数:
288
Java反射机制,是一个基础的内容章节,在对于之后的框架学习中起到了至关重要的作用,现在比较流行的是spring 框架 ,其中的IOC(自动注入)以及AOP(动态代理),在AOC中代理模式又分为动态代理和byteCode instrument(插桩)或者是CGLIB 。 在学习Java反射机制前,首 ...
分类:
其他好文 时间:
2020-01-11 00:12:08
阅读次数:
97
Spring Boot and Exit Codes Spring向JVM注册关闭钩子,以确保ApplicationContext在退出时正常关闭。除此之外,Spring还提供了ExitCodeGenerator接口。调用System.exit()时,此接口可以返回特定代码。 实现 Exit Cod ...
分类:
编程语言 时间:
2020-01-10 23:48:00
阅读次数:
146
端口占用导致的,修改下,或者启动时取消远程debug配置。 JAVA_OPTS="-server -Xms512m -Xmx1024m -XX:PermSize=256M -XX:MaxNewSize=512m -XX:MaxPermSize=1024m -Djava.awt.headless=tr ...
分类:
其他好文 时间:
2020-01-10 12:54:49
阅读次数:
80
Error mounting /dev/sda1 at /media/nvidia/Samsung_T5: Command-line `mount -t "exfat" -o "uhelper=udisks2,nodev,nosuid,uid=1001,gid=1001,iocharset=utf8 ...
分类:
系统相关 时间:
2020-01-09 22:48:16
阅读次数:
197
原题链接在这里:https://leetcode.com/problems/rotting-oranges/ 题目: In a given grid, each cell can have one of three values: the value 0 representing an empty ...
分类:
其他好文 时间:
2020-01-09 10:19:58
阅读次数:
77
登录数据库: mysql uroot p 退出数据库: quit 或者 exit 或者 ctr + d 查看所有数据库: show databases; 创建数据库: create database 数据库名 charset=utf8; 使用数据库: use 数据库名; 删除数据库: drop da ...
分类:
数据库 时间:
2020-01-08 21:18:11
阅读次数:
98
[TOC] 1. 知识储备 1.Linux 系统是一个多用户多任务的操作系统,任何一个要使用系统资源的用户,都必须首先向系统管理员申请一个账号,然后以这个账号的身份进入系统。 2.Linux 的用户需要至少要属于一个组 2. 添加用户 2.1 基本语法 3. 给用户指定或修改密码 3.1 基本语法 ...
分类:
其他好文 时间:
2020-01-08 20:47:44
阅读次数:
80
function checkPwd() { pwdCount=1 read -s -p "Please input the password: " thePwd clear while true; do if [ "${pwdCount}" -ge 3 ]; then ... ...
分类:
系统相关 时间:
2020-01-08 18:37:08
阅读次数:
81
1、创建脚本 # vi /etc/init.d/nginx #!/bin/bash # nginx Startup script for the Nginx HTTP Server # it is v.0.0.2 version. # chkconfig: - 85 15 # description ...
分类:
其他好文 时间:
2020-01-08 10:50:04
阅读次数:
70