Unit 1 学习目标: 1. how an application use the Internet 2. The structure of the Internet:The 4 layer model 3. The Internet protocol(IP) 4. Basic architect ...
分类:
Web程序 时间:
2019-11-13 00:47:50
阅读次数:
142
1 前言 1-1 W3C标准 W3C标准,既一系列标准的集合,他的本质是结构标准语言。就像平时使用的HTML,CSS等都要遵守这些标准。我们这里只讨论W3C网页标准。根据网页主要有三部分组成:结构(Structure),表现(Presentation)和行为(Behavior)。对应的标准也分以下三 ...
分类:
其他好文 时间:
2019-11-10 22:41:31
阅读次数:
95
155. Min Stack class MinStack { int min = Integer.MAX_VALUE; Stack<Integer> stack = new Stack<Integer>(); /** initialize your data structure here. */ ...
分类:
其他好文 时间:
2019-11-09 19:27:34
阅读次数:
90
0 Description of Java Conceptual Diagram https://docs.oracle.com/javase/8/docs/technotes/guides/desc_jdk_structure.html 1 JDK&JRE JDK for Java Project ...
分类:
编程语言 时间:
2019-11-09 17:39:11
阅读次数:
73
Serialization is the process of converting a data structure or object into a sequence of bits so that it can be stored in a file or memory buffer, or ...
分类:
其他好文 时间:
2019-11-09 09:53:35
阅读次数:
106
Charles 主要提供两种查看封包的视图,分别名为 Structure 和 Sequence。 Structure: 此视图将网络请求按访问的域名分类。 Sequence: 此视图将网络请求按访问的时间排序。 Charles 主要的功能包括: 1.过滤网络请求 2.截取 Https 通讯信息 3. ...
分类:
其他好文 时间:
2019-11-08 17:40:20
阅读次数:
124
面向对象的一个重要目标就是对代码重用的支持。支持这个目标的一个重要机制就是泛型机制(generic mechanism):如果出去对象的基本类型外,实现方法是相同的,就可以用泛型实现(generic implementation)来描述这种基本功能。在Java 1.5版本以前,Java并不直接支持泛 ...
分类:
编程语言 时间:
2019-11-06 15:00:22
阅读次数:
106
IDEA中导入项目发现 .java结尾的类全部是灰色的,并且左下角有一个红色圈 如图 解决办法: file->project structure->modules 将Content Root 下面的× 全部点击,然后重新添加即可: 点击添加: 最后添加成功就是这样的: 查看java类: 这样就改好了 ...
分类:
其他好文 时间:
2019-11-06 00:33:57
阅读次数:
167
mysql 5.6升级到mysql5.7查看参数报错 --从mysql5.7.6开始information_schema.global_status已经开始被舍弃,为了兼容性,此时需要打开 show_compatibility_56 解决办法 ...
分类:
其他好文 时间:
2019-11-03 12:36:36
阅读次数:
89