上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 30 下一页
摘要: Javascript写在哪里?概括起来就是三种形式:1. 中;2. 中;3. 外部JS文件里。(1) 写在中当浏览器载入网页Body部分的时候,就执行其中的Javascript语句(2) 写在中有时候并不需要一载入HTML就运行Javascript,而是用户点... 阅读全文
posted @ 2022-10-04 00:14 IT情深 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 将war包解压到当前文件夹jar -xvf itqs.war将当前文件夹下所有内容打成war包jar -cvfM0 itqs.war ./其中:x 解包c 打包v 显示过程信息0 这个是阿拉伯数字,只打包不压缩的意思解压到指定的目录:unzip itqs.wa... 阅读全文
posted @ 2022-10-04 00:14 IT情深 阅读(18) 评论(0) 推荐(0) 编辑
摘要: # 连接数大小直接影响启动时mysqld.exe内存占用大小max_connections=200# 指定表高速缓存的大小(减少内存占用)table_open_cache = 64table_definition_cache=150# 能够有效降低内存占用pe... 阅读全文
posted @ 2022-10-04 00:14 IT情深 阅读(23) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include using namespace std;/* 为什么STL c++ string 中没有format方法 * 没设计,当然你可以用 MFC库的CString * 或者 wsprintf,s... 阅读全文
posted @ 2022-10-04 00:14 IT情深 阅读(997) 评论(0) 推荐(0) 编辑
摘要: Everything最强大之处是支持布尔表达式和正则表达式,支持指定路径下的搜索。 比如: (注:以下例子中所有的“空格”字样表示英文半角空格) 例1:如果要搜索所有文件名称中有abc和xyz同时出现的文件:abc空格xyz 例2:如果要搜索.jpg或.bmp... 阅读全文
posted @ 2022-10-04 00:14 IT情深 阅读(280) 评论(0) 推荐(0) 编辑
摘要: 何为32位64位? 32位64位其实就是32bit 64bit ,32位cpu单次处理指令4字节,64位8字节,因为1字节=1byte=8bit(32/8=4字节,64/8=8字节) 32位编译器:32位系统下指针占用4字节 64位编译器:64位系统下指针占用... 阅读全文
posted @ 2022-10-04 00:14 IT情深 阅读(324) 评论(0) 推荐(0) 编辑
摘要: g++编译错误信息如下: error: invalid conversion from 'FARPROC' {aka 'long long int (*)()'} to 'LPVOID' {aka 'void*'} [-fpermissive]| 解决方法: ... 阅读全文
posted @ 2022-10-04 00:14 IT情深 阅读(127) 评论(0) 推荐(0) 编辑
摘要: Windows Forms Common Control manifest XE2中将上述内容保存为manif... 阅读全文
posted @ 2022-10-04 00:14 IT情深 阅读(85) 评论(0) 推荐(0) 编辑
摘要: C++中:(PVOID64)(Ldr64 + offsetof(PEB_LDR_DATA64, InLoadOrderModuleList))//---------------------------------------------------------... 阅读全文
posted @ 2022-10-04 00:14 IT情深 阅读(58) 评论(0) 推荐(0) 编辑
摘要: //#include "pch.h"#include #include "windows.h" #define NT_SUCCESS(x) ((x) >= 0)#define ProcessBasicInformation 0 typedef NTSTATU... 阅读全文
posted @ 2022-10-04 00:14 IT情深 阅读(187) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 30 下一页