2022年9月7日

摘要: wireshark卡死解决方案: https://blog.csdn.net/talk_8/article/details/125026419 阅读全文
posted @ 2022-09-07 14:53 小白苏 阅读(7) 评论(0) 推荐(0) 编辑

2020年7月29日

摘要: Spring 概念 1.Spring是一个轻量级的开源的JavaEE框架 2.解决企业应用开发复杂性 3.两核心技术:IOC与AOP 4.核心jar包:(beans,core)-->IOC;context-->命名空间;expression-->表达式;comons-logging-->日志,外部依 阅读全文
posted @ 2020-07-29 00:54 小白苏 阅读(310) 评论(0) 推荐(0) 编辑

2020年7月24日

摘要: 1 package head.first.java.prize; 2 3 import java.util.*; 4 5 public class test { 6 private static final int mulriple = 5000; 7 public int luckDraw(Lis 阅读全文
posted @ 2020-07-24 00:01 小白苏 阅读(166) 评论(0) 推荐(0) 编辑

2020年7月20日

摘要: 策略模式+工厂模式: 1 public abstract class Car { 2 //汽车品牌 3 private String brand; 4 public Car(String brand) { 5 this.brand = brand; 6 } 7 public Car(String b 阅读全文
posted @ 2020-07-20 10:42 小白苏 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 1 public class CodeBlockTest { 2 public static void main(String[] args) { 3 Child child = new Child(); 4 } 5 } 6 class Father { 7 public static String 阅读全文
posted @ 2020-07-20 08:43 小白苏 阅读(151) 评论(0) 推荐(0) 编辑

2020年7月18日

摘要: 裝飾模式 一:装饰者可以在所委托被装饰者的行为之前与/或之后,加上自己的行为,以达到特定的目的。 10 public String operation(){ 11 return com.operation()+cl;//位置互换 12 } 二:装饰者和被装饰者有共同的基类,我们利用继承达到“类型匹配 阅读全文
posted @ 2020-07-18 09:55 小白苏 阅读(206) 评论(0) 推荐(0) 编辑
摘要: PL/SQL 1.刪除表/序列號/同義詞/視圖 DROP TABLE/SEQUENCE/PUBLIC SYNONYM/VIEW XXX 2.創建表 CREATE TABLE XXX( id NUMBER, account VARCHAR2(30) NOT NULL , created_date DA 阅读全文
posted @ 2020-07-18 09:40 小白苏 阅读(95) 评论(0) 推荐(0) 编辑