PrintCommand.java 215 B

123456789
  1. package com.sf.util.jdk8;
  2. public class PrintCommand implements Command {
  3. public void process(int[] target) {
  4. for (int tmp : target) {
  5. System.out.println("元素:" + tmp);
  6. }
  7. }
  8. }