Skip to content

Instantly share code, notes, and snippets.

@ylxs90
Created March 29, 2014 15:22
Show Gist options
  • Save ylxs90/9856428 to your computer and use it in GitHub Desktop.
Save ylxs90/9856428 to your computer and use it in GitHub Desktop.
package cn.com.hxiao.test;
/**
* Created by hxiao on 2014/3/29.
*/
public class FirstDemo {
private String name;
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
private int age;
public static void main(String[] args) {
String s = String.valueOf("sdf");
System.out.println();
System.out.println(s);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment