java
aningxiaoxixi
此人很聪明,一看就会,所以不写
展开
-
java 泛类
使用java 泛类 可以实现 在内部方法灵活使用不同class的参数 注意: 不能使用基本数据类型 不使用泛类 1 2 class Person { 3 private Integer age; 4 5 public void setAge(Integer age) { 6 this.age = age; 7 } 8 9 public Integer getAge(原创 2020-06-20 07:44:40 · 283 阅读 · 0 评论 -
C_call_Java
## 基本步骤原创 2020-06-19 09:02:23 · 204 阅读 · 0 评论 -
JNI 解析
1 就一个native的关键字 2 https://www.cnblogs.com/bastard/archive/2012/05/17/2506877.html Linux下JNI的使用 1 native 修饰 public native void print(String content); System.loadLibrary("TestJni"); 加载一个库 2 根据库名字 生成 JNIEXPORT void JNICALL Java_TestJni_pri原创 2020-06-18 16:05:22 · 151 阅读 · 0 评论 -
java异常处理
public class Div2 { public static void main(String args[]) { int m = Integer.parseInt(args[0]); int n = Integer.parseInt(args[1]); System.out.println("Begin of div"); int r = div(m, n); System.out.println("End of div"); System.out.println(m原创 2020-06-17 22:41:45 · 105 阅读 · 0 评论 -
java class 类中添加 static
1文件中只能有唯一的 public class,而且它就是文件名字 2 static 修饰的变量或者方法,使用的话,不用实例话 class Person { static int count; String name; int age; String getName() { return "guangdong "+name; } /* construct method */ public Person () { count++; name = "null"; ag原创 2020-06-07 22:38:25 · 752 阅读 · 0 评论