Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package com.mycompany.app12;
- /**
- *
- * @author Admin
- */
- public class Test {
- public static void printValue(int value){
- System.out.println("value=" + value);
- }
- // метод printValues с произвольным количеством параметров
- // values - параметр метода
- public static void printValues(int ... values){
- // выводим размерность (длину) массива
- System.out.println("values.length=" + values.length);
- // fori+tab
- for (int i = 0; i < values.length; i++) {
- System.out.println("value=" + values[i]);
- }
- }
- // main + tab
- public static void main(String[] args) {
- //
- // 1) вызов метода printValues с одним значением типа int
- printValues(10);
- // 2) вызов метода printValues с двумя значениями типа int
- printValues(10, 11);
- // ...
- printValues(10, 11, 12, 13);
- // 4)
- printValues();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement