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

    运行效果:

  • 相关阅读:
    LeetCode 21. 合并两个有序链表
    LeetCode 20. 有效的括号
    LeetCode 19. 删除链表的倒数第N个节点
    AI
    http
    IP地址
    wiodows /linux CMD
    git
    AI
    JS常用的获取值和设值的方法
  • 原文地址:https://www.cnblogs.com/chenyanlong/p/7773243.html
Copyright © 2011-2022 走看看