配套視頻教程
為什么要用帶參數(shù)的方法
定義帶參數(shù)的方法
參數(shù)列表:
(數(shù)據(jù)類型 參數(shù)1黔衡,數(shù)據(jù)類型 參數(shù)2…)
public class ZhazhiJi {
public String zhazhi ( String fruit ) {
String juice = fruit + "汁";
return juice;
}
}
調(diào)用帶參數(shù)的方法
/*調(diào)用zhazhi方法*/
ZhazhiJi myZhazhiji = new ZhazhiJi();
String myFruit = "蘋果";
String myJuice = myZhazhi.zhazhi(myFruit);
System.out.println(myJuice);
調(diào)用方法突诬,傳遞的參數(shù)要與參數(shù)列表一一對應(yīng)
定義帶參數(shù)的方法
<訪問修飾符> 返回類型 <方法名>(<形式參數(shù)列表>) {
//方法的主體
}
調(diào)用帶參數(shù)的方法
對象名.方法名(參數(shù)1, 參數(shù)2,……府怯,參數(shù)n)
public class StudentsBiz {
String[] names = new String[30];
int index = 0;//記錄數(shù)組中學(xué)員的個(gè)數(shù),也就是下一個(gè)需要插入數(shù)組的下標(biāo)位置
public void addName(String name)
{
names[index] = name;
index++;
}
public void showNames()
{
for(int i = 0; i < index; i++)
{
System.out.println(names[i]);
}
}
}
public class Test {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
StudentsBiz studentsBiz = new StudentsBiz();
for(int i = 0; i < 3; i++)
{
System.out.println("請輸入姓名");
String name = scanner.next();
studentsBiz.addName(name);
}
studentsBiz.showNames();
}
}
帶多個(gè)參數(shù)的方法
在保存了多個(gè)學(xué)生姓名的數(shù)組中龄减,指定查找區(qū)間,查找某個(gè)學(xué)生姓名并顯示是否查找成功
設(shè)計(jì)方法邻邮,通過傳遞三個(gè)參數(shù)(開始位置瘫俊、結(jié)束位置、查找的姓名)來實(shí)現(xiàn)
public class StudentsBiz {
String[] names = {"zhangsan","lisi","wangwu","liudehua"};
public boolean searchName(String name,int start, int end)
{
if(end > names.length)
{
end = names.length;
}
if(start < 0)
{
start = 0;
}
for(int i = start; i < end; i++)
{
if(names[i].equals(name))
{
return true;
}
}
return false;
}
}
調(diào)用方法
public class Main {
public static void main(String[] args) {
// write your code here
// zhangsan,lisi,wangwu,zhaobensan,liudehua
StudentsBiz studentsBiz = new StudentsBiz();
boolean b = studentsBiz.searchName("liudehua2",-5,8);
System.out.println(b);
}
}
數(shù)組作為參數(shù)的方法
有5位學(xué)員參加了Java知識競賽的決賽坯沪,輸出決賽的平均成績和最高成績
將5位學(xué)員的決賽成績保存在數(shù)組中
設(shè)計(jì)求平均成績绿映、最高成績的方法,并把數(shù)組作為參數(shù)
public class ScoreCalc {
public int getTotalScore(int[] scores)
{
int totalScore = 0;
for(int i = 0; i < scores.length; i++)
{
totalScore += scores[i];
}
return totalScore;
}
public double getAvgScore(int[] scores)
{
int totalScore = getTotalScore(scores);
return (double) totalScore/scores.length;
}
public int getMaxScore(int[] scores)
{
int max = scores[0];//假設(shè)數(shù)組的第一個(gè)元素是最大
for(int i = 1; i < scores.length; i++)
{
if(max < scores[i])
{
max = scores[i];
}
}
return max;
}
}
public class Main {
public static void main(String[] args) {
// write your code here
ScoreCalc scoreCalc = new ScoreCalc();
int[] arrays = {67,76,88,86,99};
int total = scoreCalc.getTotalScore(arrays);
System.out.println(total);
double avg = scoreCalc.getAvgScore(arrays);
System.out.println(avg);
int max = scoreCalc.getMaxScore(arrays);
System.out.println(max);
}
}
對象作為參數(shù)的方法
在實(shí)現(xiàn)了增加一個(gè)學(xué)生姓名的基礎(chǔ)上腐晾,增加學(xué)生的學(xué)號叉弦、年齡和成績,并顯示這些信息藻糖,如何實(shí)現(xiàn)淹冰?
方式一:設(shè)計(jì)帶四個(gè)參數(shù)(學(xué)號、姓名巨柒、年齡樱拴、成績)的方法
方式二:將學(xué)生學(xué)號柠衍、姓名、年齡晶乔、成績封裝在學(xué)生對象中珍坊,設(shè)計(jì)方法,以學(xué)生對象作為參數(shù)
可以將多個(gè)相關(guān)的信息封裝成對象瘪弓,作為參數(shù)傳遞垫蛆,避免方法有太多的參數(shù)!
public class Student {
int no;//學(xué)號
int age;
String name;
int score;
public String toString()
{
String info = "學(xué)號" + no + "年齡" + age + "姓名" + name;
return info;
}
}
public class School {
Student[] students = new Student[30];
int index = 0;//當(dāng)前數(shù)組中有多少個(gè)學(xué)生腺怯,也就是數(shù)組下一個(gè)要插入的下標(biāo)位置
public void addStudent(Student student)
{
students[index] = student;
index++;
}
public void showStudents()
{
for(int i = 0; i < index; i++)
{
System.out.println(students[i]);
}
}
// public void addStudent(String name, int no,int age, int score,int height)
// {
//
// }
}
public class Main {
public static void main(String[] args) {
// write your code here
School school = new School();
Student student = new Student();
student.name = "zhangsan";
student.no = 10;
student.age = 23;
student.score = 90;
school.addStudent(student);
school.showStudents();
}
}
為什么需要包
Windows樹形文件系統(tǒng)
文檔分門別類袱饭,易于查找和管理
使用目錄解決文件同名沖突問題
如何存放兩個(gè)同名的類而不沖突?
//聲明包,作為Java源代碼第一條語句,
//用package聲明包呛占,以分號結(jié)尾
//com.company.model是包名
package com.company.model;
public class School {
//……
public String toString() {
//……
}
}
包命名規(guī)范
包名由小寫字母組成虑乖,不能以圓點(diǎn)開頭或結(jié)尾
包名之前最好加上唯一的前綴,通常使用組織倒置的網(wǎng)絡(luò)域名
package net.javagroup.mypackage;
包名后續(xù)部分依不同機(jī)構(gòu)內(nèi)部的規(guī)范不同而不同
用intelij創(chuàng)建包和類
包與目錄的關(guān)系
創(chuàng)建好的包和Java源文件是如何存儲的晾虑?
創(chuàng)建包c(diǎn)n.company.classandobject 疹味,
即創(chuàng)建了目錄結(jié)構(gòu):cn\company\classandobject
如何導(dǎo)入包
為了使用不在同一包中的類,需要在Java程序中使用import關(guān)鍵字導(dǎo)入這個(gè)類
import java.util.*; //導(dǎo)入java.util包中所有類
import cn.company.classandobject.School; //導(dǎo)入指定包中指定類
本節(jié)練習(xí)
模擬銀行賬戶業(yè)務(wù)
創(chuàng)建包bank.com帜篇,
編寫Account類糙捺,添加帶參
方法實(shí)現(xiàn)存款和取款業(yè)務(wù),
存款時(shí)帳戶初始金額為0元笙隙,
取款時(shí)如果余額不足給出提示
package com.bank;
/**
* Created by ttc on 2017/12/26.
*/
//賬戶
public class Account {
public int money;//賬戶余額
//存錢
public void saveMoney(int value)
{
money += value;
System.out.println("存款成功");
}
//取錢
public void getMoney(int value)
{
if(money < value)
{
System.out.println("余額不足");
return;
}
money -= value;
System.out.println("取款成功");
}
//顯示當(dāng)前余額
public void showMoney()
{
System.out.println("當(dāng)前余額為:" + money);
}
}
public class Main {
public static void main(String[] args) {
// write your code here
Scanner scanner = new Scanner(System.in);
int command = 0;//命令
//初始化賬戶對象
Account account = new Account();
while (true)
{
System.out.println("1 存款 2 取款 0 退出");
System.out.println("請選擇要辦理的業(yè)務(wù)");
command = scanner.nextInt();
if(command == 1)//存款
{
System.out.println("請輸入金額");
//獲取用戶輸入的金額
int value = scanner.nextInt();
account.saveMoney(value);
account.showMoney();
}
else if(command == 2)
{
System.out.println("請輸入金額");
//獲取用戶輸入的金額
int value = scanner.nextInt();
account.getMoney(value);
account.showMoney();
}
else if(command == 0)
{
break;
}
else
{
System.out.println("錯(cuò)誤的命令");
}
}
System.out.println("程序退出");
}
}