• Java中使用方法的注意事项


    
    

                                                          Java方法使用的注意事项

    本文列举了几个小白在java中使用方法应该注意的几个地方

    1. 方法应该定义在类中
    2.方法中不可以再嵌套方法
    3.方法定义的前后顺序无所谓
    4.想要执行方法必须要调用
    5.如果方法有返回值必须要"return+返回值" 不能没有
    6.void方法也可以使用return,但是后面不可以有返回值,这里return的作用相当于结束该方法的调用
    package cn.itcast;
    
    public class Test {
        public static void main(String[] args) {
            //在本类中的方法直接调用即可
            one();
            double two = two();
            System.out.println(two);
        }
        public static void one(){
            //return 10;该代码会报错,是错误写法
            return;//正确写法
        }
        public static double two(){
         //return  "这是字符串";返回值类型错误,会报错
            return  100;
        }
    }

    传入参数的一些注意事项

    package cn.itcast;
    
    public class Test {
        public static void main(String[] args) {
           //three(14);调用该方法报错,因为参数列表中的个数与传入参数的个数要一致
          // three("faf",14);该方法也报错,因为参数列表中的参数与传入参数的类型也要一致
            three(10,10);//正确
        }
        public static void three(int a,int b) {
    
        }
    }

    以上是我对方法常见注意事项的一些总结

    转载请标明博客链接:https://www.cnblogs.com/pjhaymy/

     
    
    
    
     
  • 相关阅读:
    Linux下c++使用pthread库
    一半,一绊
    【codevs3945】 完美拓印
    【poj2942】 Knights of the Round Table
    【bzoj2730】 HNOI2012—矿场搭建
    【poj1177】 Picture
    Tarjan学习笔记
    联赛总结
    【poj3461】 Oulipo
    【csuoj1014】 西湖三人行
  • 原文地址:https://www.cnblogs.com/pjhaymy/p/13237737.html
Copyright © 2020-2023  润新知