package com.jacyzhu.method;
public class Demo01 {
// main方法
public static void main(String[] args) {
int sum = add(1, 2);
System.out.println(sum);
}
// 加法
public static int add(int a, int b){
return a + b;
}
}
运行结果:
3
package com.jacyzhu.method;
public class Demo01 {
// main方法
public static void main(String[] args) {
// int sum = add(1, 2);
// System.out.println(sum);
test();
}
// 加法
public static int add(int a, int b){
return a + b;
}
public static void test(){
for (int i = 0; i <= 1000; i++) {
if (i % 5 == 0){
System.out.print(i + "\t");
}
if (i % (5*3) == 0){
System.out.println();
// System.out.println("\n");
}
}
}
}
运行结果:
0
5 10 15
20 25 30
35 40 45
50 55 60
65 70 75
80 85 90
95 100 105
110 115 120
125 130 135
140 145 150
155 160 165
170 175 180
185 190 195
200 205 210
215 220 225
230 235 240
245 250 255
260 265 270
275 280 285
290 295 300
305 310 315
320 325 330
335 340 345
350 355 360
365 370 375
380 385 390
395 400 405
410 415 420
425 430 435
440 445 450
455 460 465
470 475 480
485 490 495
500 505 510
515 520 525
530 535 540
545 550 555
560 565 570
575 580 585
590 595 600
605 610 615
620 625 630
635 640 645
650 655 660
665 670 675
680 685 690
695 700 705
710 715 720
725 730 735
740 745 750
755 760 765
770 775 780
785 790 795
800 805 810
815 820 825
830 835 840
845 850 855
860 865 870
875 880 885
890 895 900
905 910 915
920 925 930
935 940 945
950 955 960
965 970 975
980 985 990
995 1000
修饰符 返回值类型 方法名(参数类型 参数名){
...
方法体
...
return 返回值;
}
package com.jacyzhu.method;
public class Demo01 {
// main方法
public static void main(String[] args) {
// 实际参数:实际调用传递给它的参数
int sum = add(1, 2);
System.out.println(sum);
// test();
}
// 加法
// 形式参数:用来定义作用的
public static int add(int a, int b){
return a + b;
}
public static void test(){
for (int i = 0; i <= 1000; i++) {
if (i % 5 == 0){
System.out.print(i + "\t");
}
if (i % (5*3) == 0){
System.out.println();
// System.out.println("\n");
}
}
}
}
package com.jacyzhu.method;
public class Demo02 {
public static void main(String[] args) {
int max = max(10, 20);
System.out.println(max);
}
// 比大小
public static int max(int num1, int num2){
int result = 0;
if (num1 == num2){
System.out.println("num1==num2");
return 0; // 终止方法
}
if (num1 > num2) {
result = num1;
}else {
result = num2;
}
return result;
}
}
运行结果1:
20
运行结果2:
num1==num2
0
int larger = max(10, 20);
System.out.println("Hello, Jacy!");
值传递(Java)和引用传递
在程序设计语言中将参数传给方法或函数的方式目前有两种:一种是值传递,一种是引用传递。
值传递表示将实参的值传递给方法;
引用传递表示将实参a的地址引用传递给方法。
Java是采用值传递的,Java程序中的方法得到的总是实参值的拷贝。
package com.jacyzhu.method;
public class Demo02 {
public static void main(String[] args) {
double max = max(20.0, 30.0);
System.out.println(max);
}
// 比大小
public static double max(double num1, double num2){
double result = 0;
if (num1 == num2){
System.out.println("num1==num2");
return 0; // 终止方法
}
if (num1 > num2) {
result = num1;
}else {
result = num2;
}
return result;
}
// 比大小
public static int max(int num1, int num2){
int result = 0;
if (num1 == num2){
System.out.println("num1==num2");
return 0; // 终止方法
}
if (num1 > num2) {
result = num1;
}else {
result = num2;
}
return result;
}
}
运行结果:
30.0
package com.jacyzhu.method;
public class Demo01 {
// main方法
public static void main(String[] args) {
// 实际参数:实际调用传递给它的参数
int sum = add(1, 2, 3);
System.out.println(sum);
// test();
}
// 加法
// 形式参数:用来定义作用的
public static int add(int a, int b, int c){
return a + b + c;
}
public static int add(int a, int b){
return a + b;
}
public static void test(){
for (int i = 0; i <= 1000; i++) {
if (i % 5 == 0){
System.out.print(i + "\t");
}
if (i % (5*3) == 0){
System.out.println();
// System.out.println("\n");
}
}
}
}
运行结果:
6
package com.jacyzhu.method;
public class Demo03 {
public static void main(String[] args) {
// args.length 数组长度
for (int i = 0; i < args.length; i++) {
System.out.println("args[" + i + "]" + args[i]);
}
}
}
package com.jacyzhu.method;
public class Demo04 {
public static void main(String[] args) {
Demo04 demo04 = new Demo04();
demo04.test(1, 2, 3, 4, 5, 6);
}
public void test(int... i) {
System.out.println(i[0]);
System.out.println(i[1]);
System.out.println(i[2]);
System.out.println(i[3]);
System.out.println(i[4]);
System.out.println(i[5]);
}
}
运行结果:
1
2
3
4
5
6
package com.jacyzhu.method;
public class MaxDemo04 {
public static void main(String[] args) {
// 调用可变参数的方法
printMax(34, 3, 3, 2, 56.5);
printMax(new double[]{1, 2, 3});
}
public static void printMax(double... numbers) {
if (numbers.length == 0) {
System.out.println("No argument passed");
return;
}
double result = numbers[0];
// 排序
for (int i = 1; i < numbers.length; i++) {
if (numbers[i] > result) {
result = numbers[i];
}
}
System.out.println("The max value is " + result);
}
}
运行结果:
The max value is 56.5
The max value is 3.0