上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 72 下一页
摘要: 今天出现了一个很奇怪的异常:java.lang.OutOfMemoryError: GC overhead limit exceeded ,超出了GC开销限制。科普了一下,这个是JDK6新添的错误类型。是发生在GC占用大量时间为释放很小空间的时候发生的,是一种保护机制。一般是因为堆太小,导致异常的原 阅读全文
posted @ 2022-09-13 20:48 信铁寒胜 阅读(2508) 评论(0) 推荐(0) 编辑
摘要: 错误方式: 1、char* a[] = NULL; 2、char* a[] = '\0'; 3、char** a = '\0'; 正确方式: char** a = NULL; a = (char**)malloc(sizeof(char*) * (1024)); 错误的方式可能会引起编译报错,就算没 阅读全文
posted @ 2022-09-08 17:11 信铁寒胜 阅读(2879) 评论(0) 推荐(0) 编辑
摘要: 您可以使用itoa()函数 将 整数值转换为字符串。 这是一个例子: int num = 321; char snum[5]; // convert 123 to string [buf] itoa(num, snum, 10); // print our string printf("%s\n", 阅读全文
posted @ 2022-09-08 10:35 信铁寒胜 阅读(2301) 评论(0) 推荐(0) 编辑
摘要: 解决方法:b变量的数组长度给的不够,需要试下增加数组宽度 阅读全文
posted @ 2022-09-08 08:55 信铁寒胜 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 错误:error C2440: “=”: 无法从“const char *”转换为“char *” “初始化“::无法从const char* 转换为char* C和C++11有所不同,C中可以用下面的语句 1 char *a="hello"; 2 char *b={"hello","world"} 阅读全文
posted @ 2022-09-07 17:27 信铁寒胜 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 问题:Description Resource Path Location Type Java compiler level does not match t 今天在自己项目中整合HBase API的时候遇到了这个问题,想了半天也不知道自己干了什么出现了这个问题。去查阅相关资料终于把这个小红叉给去掉 阅读全文
posted @ 2022-09-07 15:14 信铁寒胜 阅读(706) 评论(0) 推荐(0) 编辑
摘要: org.apache.poi.openxml4j.exceptions.InvalidOperationException org.apache.poi.openxml4j.exceptions.InvalidOperationException: Can't open the specified 阅读全文
posted @ 2022-09-06 17:58 信铁寒胜 阅读(2204) 评论(0) 推荐(0) 编辑
摘要: 主要操作: ①添加所有文件: git add . ②自定义添加多个文件,文件之间用空格隔开: git add file1 file2 file3 12、提交到本地仓库: git commit -m “描述语句” 13、执行第12点后,要执行一下 git pull,合并分支最新代码,查看是否会冲突,若 阅读全文
posted @ 2022-09-01 16:21 信铁寒胜 阅读(2334) 评论(0) 推荐(0) 编辑
摘要: 因为只是git push没有指明哪个仓库。所以就报错了。指定仓库之后就成功了!(git push origin master) 如图: 转自:git push报错 fatal: The current branch master has no upstream branch. To push the 阅读全文
posted @ 2022-09-01 16:19 信铁寒胜 阅读(518) 评论(0) 推荐(0) 编辑
摘要: 我必须编写一个程序,我必须突出显示并更改JTextarea中句子的颜色.我有一个名为原始文件和摘要文件的文件.原始文件将显示在textarea框中,我必须在textarea框中突出显示摘要文件的所有句子. 我希望在textarea中突出显示并着色文本.请有人能告诉我该怎么做?先感谢您 :) 您无法更 阅读全文
posted @ 2022-08-31 10:49 信铁寒胜 阅读(233) 评论(0) 推荐(0) 编辑
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 72 下一页