上一页 1 2 3 4 5 6 7 ··· 20 下一页
摘要: public void main() { Runnable runnable = new ShareVariableRunnable(); Thread[] threads = new Thread[3]; for (int i = 0; i < 3; i++) { threads[i] = new 阅读全文
posted @ 2021-10-29 09:14 dcrenl 阅读(42) 评论(0) 推荐(0)
摘要: 1、安装g++ yum -y install gcc-c++ 2、编译*.cpp文件 g++ -o test_app_name test_source_file.cpp 3、运行编译结果 ./test_app_name 阅读全文
posted @ 2021-10-08 12:02 dcrenl 阅读(104) 评论(0) 推荐(0)
摘要: 1、检查gcc是否安装 输入g++如提示:g++: fatal error: no input files说明已经安装gcc环境 2、安装gcc环境,如已经安装略过此步骤 yum install gcc-c++ 3、编译cpp文件 g++ -o 编译后的名称 源文件.cpp 4、运行 ./编译后的文 阅读全文
posted @ 2021-09-29 16:54 dcrenl 阅读(466) 评论(0) 推荐(0)
摘要: 1、检查yum上的nginx版本 yum info nginx 2、安装nginx yum install nginx 安装过程有时会询问是否安装,输入y回车即可 3、将服务设置为每次开机启动 sudo systemctl enable nginx 4、启动nginx服务 sudo systemct 阅读全文
posted @ 2021-09-29 16:33 dcrenl 阅读(1038) 评论(0) 推荐(0)
摘要: Asynchronous Device Events 异步设备事件 CAP_DEVICEEVENT MSG_SET选择应用程序希望Twain源报告的事件; MSG_RESET返回Twain源的首选设置。 Audible Alarms 报警声音 CAP_ALARMS 打开和关闭特定的报警声音。 CAP 阅读全文
posted @ 2021-09-23 15:08 dcrenl 阅读(485) 评论(0) 推荐(0)
摘要: delete from TableName; //清空数据 update sqlite_sequence SET seq = 0 where name ='TableName';//自增长ID为0转自:https://www.cnblogs.com/huangtailang/p/3246336.ht 阅读全文
posted @ 2021-09-22 09:02 dcrenl 阅读(520) 评论(0) 推荐(0)
摘要: select FLOOR(DATEDIFF(DY, substring(身份证字段,7,4), GETDATE()) / 365.25) age from [表名] 阅读全文
posted @ 2021-05-17 22:32 dcrenl 阅读(220) 评论(0) 推荐(0)
摘要: 一、jdk安装 1、下载jdk安装文件 2、在"系统变量”下”新建“选项"JAVA_HOME"值为:"jdk"文件夹路径 3、在"系统变量"中找到"Path"增加%Java_Home%\bin;%Java_Home%\jre\bin; 4、在"系统变量"栏,"新建","变量名"为"CLASSPATH 阅读全文
posted @ 2020-12-24 17:13 dcrenl 阅读(252) 评论(0) 推荐(0)
摘要: 1、查询当前使用的数据库 select database(); 2、获取当前数据库表 select * from information_schema.TABLES where TABLE_SCHEMA=(select database()) 第二种方法,不能使用union all 等方式。 sho 阅读全文
posted @ 2020-12-17 18:31 dcrenl 阅读(859) 评论(0) 推荐(0)
摘要: 1、找个安装镜像文件 2、必须以管理员身份运行cmd 3、在CMD里输入“G:\vs_professional.exe /uninstall /force" 4、企业版就把professional改为enterprise 阅读全文
posted @ 2020-12-17 17:03 dcrenl 阅读(414) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 20 下一页