通过JVM给我们的入口,可以知道运行期间有几个线程: ThreadMXBean threadMXBean = ManagementFactory.getThreadMXBean();ThreadInfo[] threadInfos = threadMXBean.dumpAllThreads(fals ...
分类:
编程语言 时间:
2020-04-29 01:16:42
阅读次数:
75
命令模式,是将一个请求封装为一个对象,从而使我们可以用不同的请求对客户进行参数化、对请求排队或记录请求日志,以及支持可撤销的操作。 动机(Motivation) ”行为请求者“与”行为实现者“通常呈现一种”紧耦合“。但在某些场合——比如需要对行为进行”记录、撤销、事务“等处理,这种无法抵御变化的紧耦 ...
分类:
编程语言 时间:
2020-04-29 01:10:07
阅读次数:
63
//利用for循环打印三角形(用于理解) import com.sun.xml.internal.ws.addressing.WsaActionUtil;?public class ForPlus { public static void main(String[] args) { //打印三角形 ...
分类:
其他好文 时间:
2020-04-29 01:06:14
阅读次数:
65
多类合作【重点】 汽车类和修理厂类分析 5.2 汽车类代码实现 5.3 修理厂类代码实现 5.4 主方法 ...
分类:
其他好文 时间:
2020-04-29 00:44:08
阅读次数:
63
1 #include <iostream> 2 #include <string> 3 4 using namespace std; 5 6 class Pet 7 { 8 private: 9 string name; 10 int age; 11 string color; 12 public: ...
分类:
其他好文 时间:
2020-04-29 00:38:57
阅读次数:
92
```cpp #include #include #include #include #include #include #include #include #include #include #include #include //#include #include #include #pragm... ...
分类:
其他好文 时间:
2020-04-28 23:29:56
阅读次数:
114
1 package com.company; 2 //split 3 //使用时,想要以什么符号分割,就在"(填写要分割的字符)"; 4 //有一个特殊情况,在以"."分割时,需要写成"\\." 5 //因为单独"."的话,有特殊含义 6 public class StringFG { 7 publ ...
分类:
编程语言 时间:
2020-04-28 22:58:34
阅读次数:
63
[Flags] //注意标志 public enum myColor { None=0, Red=1,Green=2,Blue=4,Yellow=8 }; private void Form1_MouseClick(object sender, MouseEventArgs e) { myColor ...
分类:
其他好文 时间:
2020-04-28 20:24:40
阅读次数:
102
题目:学生综合信息测评系统 程序要求 每个学生的信息为:学号、姓名、性别、家庭住址、联系电话、语文、数学、外语三门单科成绩、考试平均成绩、考试名次、同学互评分、品德成绩、任课教师评分、综合测评总分、综合测评名次。考试平均成绩、同学互评分、品德成绩、任课教师评分分别占综合测评总分的60%,10%,10 ...
分类:
编程语言 时间:
2020-04-28 20:09:41
阅读次数:
83
1、核心逻辑(为了测试方便,路径直接写死了): public static void TemplateWrite<T>(List<T> datas, int startRow = 2, string targetPath = @"D:\导出excel测试.xlsx", string template ...
分类:
其他好文 时间:
2020-04-28 14:52:09
阅读次数:
246