标签:android style blog http color ar 使用 sp java
android培训------我的java笔记,期待与您交流!
一、重载函数
class Person{ int age; String name; void set(int a){ age = a; } void set(String s){ name = s; } }
二、构造函数
public class Person { public static void main(String agrc[]){ //下行代码报错,已写有参构造函数,编译器不会自动添加默认构造函数了 Dog d = new Dog(); } } class Dog{ Dog(int age){ } }
三、this代表调用这个函数的对象
public class Person { int age; String name; String sex; Person(){ } Person(int age, String name){ //用法一:参数和成员变量同名时使用 this.age = age; this.name = name; } Person(int age, String name, String sex){ //用法二:调用构造函数,只能调用一个且写在代码第一行 this(age, name); this.sex = sex; } }
四、static静态关键字
public class Person { public static void main(String agrc[]){ Dog.age = 21;//可使用类名来调用(可没有对象) } } class Dog{ static int age; static{ //静态代码块,可用于给静态成员变量赋初值 } static void set(){ age = 30;//静态方法中要使用静态成员变量,不能使用this } }
【好程序员训练营】---- 重载、构造函数和this、static要点
标签:android style blog http color ar 使用 sp java
原文地址:http://www.cnblogs.com/qiu520/p/4098213.html