0x004 类与对象

2016-04-13  本文已影响8人  卖梳子的鲤鱼

0x001 类

/**
  * 这是注释,中括号内可以省略
  */
[访问权限] class 类名{
    [访问权限] 数据类型 [static] [final] 变量名;
    [访问权限] 类名([数据类型 变量名]){
    }
    [访问权限] [static] 返回值类型 方法名([数据类型 变量名]){
    } 
}

栗子:

/**
 * Created by lyx on 4/13/2016.
 * 对比两个数的工具;
 */
public class Compare {
private int a;
private int b;
public Compare(int a,int b){
    this.a=a;
    this.b=b;
}

/**
 * 获取最大值
 * @return 返回两个数中大的数
 */
public int max(){
    return a>b?a:b;
}

/**
 * 获取最小值
 * @return 返回两个数中小的数
 */
public int min(){
    return a<b?a:b;
}
}

0x002 对象

持续更新

上一篇 下一篇

猜你喜欢

热点阅读