【无标题】springboot错误1 OpenJDK 64-Bit Server VM warning: Options -Xverify:none and -noverify were deprecated in JDK 13 and will likely be removed in a future release.
单链表的插入、删除、头插法、尾插法、倒置、合并、查找、阿瑟夫环 单链表的插入、删除、头插法、尾插法、倒置、合并、查找、阿瑟夫环详细代码如下#include "stdio.h"#include "malloc.h"#define OK 1#define ERROR 0#define INFEASIBLE -1#define OVERFLOW -2#define TRUE 1#define FALSE 0#define List_Init_Size
java反射部分注意事项 #Java 反射 1##反射获取字节码Class.forName(“类的全路径”)类名.class对象.getClass()##入口反射的入口不是我们经常用的main(),而是@Test/*单元测试方法语法要求:@Test +public+void+没有参数notice:使用时需要导包 Add JUnit 4 Library to the build path导报后的效果:import org.junit.Test*/@Testpublic void testArray(){