上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: 原文:https://www.baeldung.com/jvm-measuring-object-sizes 概述 对象的内存布局与具体的JVM实现相关。 本文讨论HotSpot JVM实现。 Shallow,Retained,and Deep Object Sizes 对象大小的三个指标:Shal 阅读全文
posted @ 2022-10-24 23:53 rxh1999 阅读(85) 评论(0) 推荐(0)
摘要: 未经深拷贝,多次修改实体属性。 递归代码中增删集合对象。 配置变量在赋值前被使用。 阅读全文
posted @ 2022-09-12 18:22 rxh1999 阅读(14) 评论(0) 推荐(0)
摘要: HotSpot JVM的三个主要组件? Runtime JIT Compiler Memory Manager 三个主要组件的关系? Runtime作为基础,提供JIT Complier和Memory Manager的接口 从32位JVM到64位JVM 可寻址空间超过4G,支持更大的堆 oops长度 阅读全文
posted @ 2022-02-24 00:29 rxh1999 阅读(35) 评论(0) 推荐(0)
摘要: 原文:https://github.com/joaoBordalo/feup-COMP/blob/master/The%20Definitive%20ANTLR%204%20Reference.pdf ANTLR V4介绍 新的解析技术:Adaptive LL() or ALL() 简化对expre 阅读全文
posted @ 2022-02-15 00:33 rxh1999 阅读(405) 评论(0) 推荐(0)
摘要: 原文:http://www.evosuite.org/wp-content/papercite-data/pdf/fittest2014.pdf Results and Problems部分可以看一下 EvoSuite采用search-based approach来生成java测试用例,在SBST’ 阅读全文
posted @ 2022-02-09 00:34 rxh1999 阅读(43) 评论(0) 推荐(0)
摘要: 原文: https://www.veracode.com/blog/research/automated-unit-test-generation-java 作者使用EvoSuite为wox生成了一套test case EvoSuite包含不同的生成策略: Search Based Test Gen 阅读全文
posted @ 2022-02-08 23:23 rxh1999 阅读(60) 评论(0) 推荐(0)
摘要: 在编写单元测试的时候,外部依赖和复杂类的实例化是一大阻碍,Mocking就是为了解决这种阻碍。 mock也有test double, stub, fake等其他叫法。 一个Stub是一个被用来代替真实组件的对象,代替后,真实组件的功能不会被调用。(A Stub is an object that i 阅读全文
posted @ 2022-02-08 00:10 rxh1999 阅读(43) 评论(0) 推荐(0)
摘要: 问题 代码转换需要越来越多的库 JDT 用于Eclipse相关开发 read, generate, analyse and transform source code API和meta model难以理解 APT(Annotation Processing Tool) SUN,之后由Oracle开发 阅读全文
posted @ 2022-01-26 00:58 rxh1999 阅读(106) 评论(0) 推荐(0)
摘要: https://docs.oracle.com/javase/tutorial/essential/environment/paths.html 以下内容基于java8, 一些地方与后面的版本不一致。 本文介绍PATH和CLASSPATH环境变量。 jdk安装目录中,bin文件夹下包含compile 阅读全文
posted @ 2022-01-25 00:25 rxh1999 阅读(48) 评论(0) 推荐(0)
摘要: 常见缩写 CtClass: compile-time class Spoon: Structural elements 编程语言具有不同的meta model。 一个抽象语法树(AST)或者模型,是meta model的一个实例。每一个meta model——以及相应的AST——都或多或少的取决于需 阅读全文
posted @ 2022-01-24 21:47 rxh1999 阅读(53) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 9 下一页