一、JAVA HEAP内存空间 Memory structure Of a JVM process java堆内存空间分为: 新生代 新生区(Eden):初创对象 存活区(Survivor):步入成熟期的初创对象 ss1: ss2: 老年代 mark --> compact 持久代 垃圾回收期: 新 ...
分类:
其他好文 时间:
2021-02-25 11:53:46
阅读次数:
0
前言 设计模式最初并非出于软件设计中,而是用于建筑领域的设计中。1995年,四位作者将建筑设计的基本模式融合到软件开发中,合作出版了《设计模式:可复用的面向对象软件的基础》,一共收录了23个设计模式,这是设计模式领域里程碑的事件,导致了软件设计模式的突破。所以这四位作者在软件开发领域耦以四人帮(Ga ...
分类:
其他好文 时间:
2021-02-24 13:18:20
阅读次数:
0
Logic Gates circuit is the foundamental structure that build up the calculation and processing of a computer. It had been believed that with proper ar ...
分类:
编程语言 时间:
2021-02-23 14:24:08
阅读次数:
0
1、从git上clone到本地后,直接open; 2、在Project Structure中把除了resources、webapp文件之外的文件,全部打上Sources蓝标签;并把resources文件打上Resources标签 3、配置Facets 4、配置Artifacts 5、在Edit Co ...
分类:
系统相关 时间:
2021-02-22 11:55:12
阅读次数:
0
psvm或者main main方法 sout --system.out 输出 ctrl+鼠标左键,进入类 左侧structure,查看类的结构,方法 tools --generate javadoc --other command line arguments:-encoding utf-8 -ch ...
分类:
其他好文 时间:
2021-02-18 13:17:46
阅读次数:
0
原文链接:https://codeforces.com/blog/entry/58316 更多数据结构技巧:https://codeforces.com/search?query=%23data+structure 维护一个类似mutiset的数据结构,支持以下操作: 1、向数据结构中添加c个元素x ...
分类:
其他好文 时间:
2021-02-17 14:31:46
阅读次数:
0
IDEA反编译 第一步 点击project structure(快捷键Ctrl+Alt+Shift+S),复制图中的文件地址到导航栏 第二步 可以看到文件打开之后是乱码,我们回到IDEA右键包或类,选择Open in Explorer打开文件夹,把文件拷贝进去。可以看到IDEA多了一个类,打开它,可 ...
分类:
其他好文 时间:
2021-02-15 12:43:06
阅读次数:
0
一、导入表结构 USE `qskj_03`; /*Table structure for table `test` */ DROP TABLE IF EXISTS `test`; CREATE TABLE `test` ( `id` int(10) NOT NULL AUTO_INCREMENT C ...
分类:
数据库 时间:
2021-02-15 12:33:14
阅读次数:
0
Code Structure 代码结构 命名保持规范,驼峰命名。 Boolean方法,起名要以"is" / "has"开头。 方法名称要是动词。 ...... Design Principles 设计原则 Apply the Single-Responsibility principle to in ...
分类:
其他好文 时间:
2021-01-28 12:20:52
阅读次数:
0
$data = Db::name('admin_user')->where('status', 1)->whereIn('id', function($query) use($structure_id) { $query->name('admin_structure_duty')->where([ ...
分类:
数据库 时间:
2021-01-18 11:34:45
阅读次数:
0