参数的一些常见问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了参数的一些常见问题相关的知识,希望对你有一定的参考价值。
/*
给变量赋值时,参数就是我们常用的方式之一
*/
/*
一. 成员方法带参数的
*/
public class Student {
String name;
int age;
public void addName(String name,int age){
this.name=name;
this.age=age;
}
public void show(){
System.out.print(this.name+"的年龄是:"+this.age);
}
}
public class TestStudent {
public static void main(String[] args){
Student s=new Student();
s.addName("上官婉儿",18); //调用方法传参
s.show();
}
}
/* 二 setXxx(){} 方法, getXxx(){}方法
*/
public class Student2 {
String name;
int age;
public String getName(){
return name;
}
public void setName(String name){
this.name=name;
}
public int getAge(){
return age;
}
public void setAge(int age){
this.age=age;
}
public void show(){
System.out.println(this.getName()+"的年龄是:"+this.getAge());
}
}
public class TestStudent2 {
public static void main(String[] args){
Student2 s=new Student2();
s.setName("百里登峰"); //调用方法传参
s.setAge(18);
s.show();
}
}
/* 三 带参构造函数
*/
public class Student1 {
String name;
int age;
public Student1(String name,int age){
this.name=name;
this.age=age;
}
public void show(){
System.out.print(name+"的年龄是:"+age);
}
}
public class TestStudent1 {
public static void main(String[] args){
Student1 s=new Student1("西门吹雪",20); //直接传参
s.show();
}
}
以上是关于参数的一些常见问题的主要内容,如果未能解决你的问题,请参考以下文章