zoukankan      html  css  js  c++  java
  • Document

     1 package com.mon11.day2;
     2 /** 
     3 * 类说明 :构造方法,可变参数列表
     4 * @author 作者 : chenyanlong 
     5 * @version 创建时间:2017年11月2日 
     6 */
     7 class Employee{
     8     private double salary=1800;
     9     
    10     //构造方法
    11     public Employee(){
    12         System.out.println("构造方法被调用");
    13     }
    14     
    15     //重新定义方法
    16     public void getSalary(){
    17         System.out.println("职员的基本薪水"+salary);
    18     }
    19     
    20     //可变参数列表
    21     public double add(int...is){
    22         double result=0;
    23         for(int i=0;i<is.length;i++){
    24             result +=is[i];
    25         }
    26         return result;
    27         
    28     }
    29     
    30 }
    31 
    32 
    33 public class TestEmployee {
    34 
    35     public static void main(String[] args) {
    36         Employee a=new Employee();
    37         a.getSalary();
    38         
    39         System.out.println("输出:"+a.add(12));
    40         System.out.println("12,13之和输出:"+a.add(12,13));
    41         System.out.println("12,13,14之和输出:"+a.add(12,13,14));
    42         System.out.println("12,13,14,15之和输出:"+a.add(12,13,14,15));
    43     }
    44 }
    View Code

    运行效果:

  • 相关阅读:
    koa2环境搭建
    单例模式
    nodejs fs path
    path node
    webpack code splitting
    babel 插件编写
    C#验证码类
    C#身份证识别相关技术
    C# Socket服务端与客户端通信(包含大文件的断点传输)
    动态抓取网页信息
  • 原文地址:https://www.cnblogs.com/chenyanlong/p/7773243.html
Copyright © 2011-2022 走看看