public class StatePattern { public static void main(String[] args) { Context context=new Context(); for (int i = 0; i < 10; i++) { context.handle(); } ...
分类:
其他好文 时间:
2021-04-19 16:06:54
阅读次数:
0
前好几天学了Map集合,简单总结下重点: Map集合中有各种重要的方法,包括增加,删除元素,获取集合的大小,清空集合,对Map集合进行遍历:1.get(k) 返回为value 2.将Map集合转换成Set集合,然后对Set集合进行遍历(即利用迭代器的方式:其中分别包含for()+get()方法或者f ...
分类:
其他好文 时间:
2021-04-19 15:57:16
阅读次数:
0
Java常用类:System类 System 系统类主要用于获取系统的属性数据和其他操作,构造方法私有 常用方法 方法名 说明 static void arraycopy(); 复制数组 static long currentTimeMillis(); 获取当前系统时间,返回的是毫秒值 static ...
分类:
编程语言 时间:
2021-04-19 15:47:34
阅读次数:
0
INSERT INTO empe VALUES ( 1,'海绵宝宝 ','1996-12-10','男','山东淄博');-- 新增部分数据INSERT INTO empe (eid,ename,addr)VALUES (2,'派大星','山东济南')-- UPDATE empe SET birth ...
分类:
其他好文 时间:
2021-04-19 15:05:34
阅读次数:
0
之前写了一下synchronized关键字的一点东西,那么除了synchronized可以加锁外,JUC(java.util.concurrent)提供的Lock接口也可以实现加锁解锁的功能。 看完本文,希望您可以了解或者掌握: 1:Lock接口的实现 2:Condition的原理和概念 3:Ree ...
分类:
编程语言 时间:
2021-04-19 14:42:58
阅读次数:
0
public class MyInfo { public string Name { get; set; } public double Diff { get; set; } public string File { get; set; } } static void Main(string[] a ...
当我们程序遇到异常时,会导致程序中止运行,见如下例子: def test(): a = int(input("please input:")) b = int(input("please input:")) result = a / b print(result) def test_1(): pri ...
分类:
编程语言 时间:
2021-04-19 14:38:29
阅读次数:
0
安装第三方插件数据:pip install plmysql 安装到了本地python引用 代码调用 首先在python 文件中导入 import pymysql 看是否成功 ,成功则可连接,以上安装成功若导入还有问题重启一下python 即可 import pymysqlconnect =pymys ...
分类:
数据库 时间:
2021-04-19 14:36:30
阅读次数:
0
匿名函数 ::操作符 A static method (ClassName::methName) An instance method of a particular object (instanceRef::methName) A super method of a particular obje ...
分类:
编程语言 时间:
2021-04-16 12:22:24
阅读次数:
0
VS2010 NX8.5 #include<algorithm>#include <sstream>#include <iomanip> //定义涵数 NXString doubleToNXString(double value);//double转换NXString NXString intToN ...
分类:
其他好文 时间:
2021-04-16 12:13:21
阅读次数:
0