方法使用需要注意的常见问题
package com.itheima.Method; public class Method2 { public static void printhelloworld1(){ System.out.println("hello world!"); } public static void main(String[] args) { //目标:使用方法时的常见问题 //1.方法在类中的位置放前放后无所谓,但一个方法不能定义在另一个方法内部 //2.方法的返回值类型写void时,方法内部不能再使用return返回数据,如果方法的返回值类型写了具体类型,方法内部则必须使用return返回对应的数据。 //3.return语句的下面,不能编写代码,执行不到这里 //4.方法不调用就不会执行,调用方法时,传给方法的数据,必须严格匹配方法的参数情况。 //5.调用有返回值的方法有3种方式:1.可以定义变量的接受结果2.或者直接输出调用3.甚至直接调用 int a=jia(2,2); System.out.println(jia(1, 1)); jia(3,3); //6.调用无返回值的方法,只有1种方法:1.只能直接调用 printhelloworld(); } public static int jia(int a,int b){ int c=a+b; return c; } public static void printhelloworld(){ System.out.println("hello world!");
} }
标签:常见问题,JAVA,int,调用,static,方法,public From: https://www.cnblogs.com/pengsuoqun123/p/18045363