摘要:
程序执行时内存一般被分为4部分 代码区(code segment):存放代码 数据区(data segment):静态变量和字符串常量 栈(stack): 存放局部变量 堆(heap):动态生成内存(new出来的东西) 代码如下: public class Person{ int id; int a 阅读全文
摘要:
接口测试概述 定义 API testing is a type of software testing that involves testing application programming interfaces (APIs) directly and as part of integratio 阅读全文