Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

MultiArgHelloWorld.java 580B

12345678910111213141516171819202122
  1. /* Copyright (c) 2002 Contributors.
  2. *
  3. * This program and the accompanying materials are made available
  4. * under the terms of the Eclipse Public License v 2.0
  5. * which accompanies this distribution and is available at
  6. * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
  7. *
  8. * Contributors:
  9. * PARC initial implementation
  10. */
  11. package org.aspectj.weaver.test;
  12. public class MultiArgHelloWorld {
  13. public static void main(String[] args) {
  14. foo("Hello", "World");
  15. }
  16. static void foo(Object s, Object t) {
  17. System.out.println(s + " " + t);
  18. }
  19. }