Demotion of primitives and overloading : Overloading « Class « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » Class » Overloading 




Demotion of primitives and overloading


// : c04:Demotion.java
// Demotion of primitives and overloading.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.

public class Demotion {
  void f1(char x) {
    System.out.println("f1(char)");
  }

  void f1(byte x) {
    System.out.println("f1(byte)");
  }

  void f1(short x) {
    System.out.println("f1(short)");
  }

  void f1(int x) {
    System.out.println("f1(int)");
  }

  void f1(long x) {
    System.out.println("f1(long)");
  }

  void f1(float x) {
    System.out.println("f1(float)");
  }

  void f1(double x) {
    System.out.println("f1(double)");
  }

  void f2(char x) {
    System.out.println("f2(char)");
  }

  void f2(byte x) {
    System.out.println("f2(byte)");
  }

  void f2(short x) {
    System.out.println("f2(short)");
  }

  void f2(int x) {
    System.out.println("f2(int)");
  }

  void f2(long x) {
    System.out.println("f2(long)");
  }

  void f2(float x) {
    System.out.println("f2(float)");
  }

  void f3(char x) {
    System.out.println("f3(char)");
  }

  void f3(byte x) {
    System.out.println("f3(byte)");
  }

  void f3(short x) {
    System.out.println("f3(short)");
  }

  void f3(int x) {
    System.out.println("f3(int)");
  }

  void f3(long x) {
    System.out.println("f3(long)");
  }

  void f4(char x) {
    System.out.println("f4(char)");
  }

  void f4(byte x) {
    System.out.println("f4(byte)");
  }

  void f4(short x) {
    System.out.println("f4(short)");
  }

  void f4(int x) {
    System.out.println("f4(int)");
  }

  void f5(char x) {
    System.out.println("f5(char)");
  }

  void f5(byte x) {
    System.out.println("f5(byte)");
  }

  void f5(short x) {
    System.out.println("f5(short)");
  }

  void f6(char x) {
    System.out.println("f6(char)");
  }

  void f6(byte x) {
    System.out.println("f6(byte)");
  }

  void f7(char x) {
    System.out.println("f7(char)");
  }

  void testDouble() {
    double x = 0;
    System.out.println("double argument:");
    f1(x);
    f2((floatx);
    f3((longx);
    f4((intx);
    f5((shortx);
    f6((bytex);
    f7((charx);
  }

  public static void main(String[] args) {
    Demotion p = new Demotion();
    p.testDouble();
  }
///:~


           
       














Related examples in the same category
1.Demonstration of both constructor and ordinary method overloadingDemonstration of both constructor and ordinary method overloading
2.Overloaded constructor
3.Overloaded methodOverloaded method
4.Demonstration of overriding fieldsDemonstration of overriding fields
5.Overloading based on the order of the argumentsOverloading based on the order of the arguments
6.Promotion of primitives and overloadingPromotion of primitives and overloading
7.Overloading a base-class method name in a derived class does not hide the base-class versionsOverloading a base-class method name in a derived class does not hide the base-class versions
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.