Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

MyClass_ch16.java 374B

123456789101112131415161718
  1. public class MyClass_ch16
  2. {
  3. public void foo(int number, String name)
  4. {
  5. System.out.println("Inside foo (int, String) with args: " +
  6. number + ":" + name);
  7. }
  8. public static void main(String[] args)
  9. {
  10. // Create an instance of MyClass
  11. MyInterface_ch16 myObject = (MyInterface_ch16)new MyClass_ch16
  12. ();
  13. // Make the call to foo
  14. myObject.bar("Russ");
  15. }
  16. }