重载

方法的重载

当创建一个对象时,就是给此对象分配到的存储空间取了一个名字。使用名字可以引用所有的对象和方法。方法则是给某个动作取得名字。

class Tree {
  int height;
    Tree() {
      System.out.println( " Planting a seeding " );
        height = 0;
      }
    Tree( int initialHeight ) {
      height = initialHeight;
      System.out.println( " Creating new Tree that is " + height       + " feet tall " );
      }
    void info() {
      System.out.println( " Tree is " + height + " feet tall " );
    }
    void info( String s ) {
      System.out.println( s + " : Tree is " + height + " feet tall " );
    }
}
public class OverLoading {
    public static void main( String[] args ) {
      for( int i = 0; i<5; i++ ) {
        Tree t = new Tree( i );
        t.info();
        t.info( " overloading method " );
        new Tree();
      }
    }   
}```

    这里用到了相同名字的两个构造器,这就叫重载。

用到了两个构造器:一个默认构造器,一个取字符串作为形式参数——该字符串表示初始化对象所需的文件名称。都是构造器,有相同的名字。

    函数重载的最重要目的是因为他们都在做同一件事情,虽然输入不同,但是做的事情相同

***
###区分重载方法
每个重载方法都有自己独一无二的**参数类型列表**。
```java
public class OverLoadingOrder {
    static void f( String s, int i ) {
      System.out.println( " String:  " + s + " , int: " + i );
    }
      static void f( int i, String s ) {
        System.out.println( " int: " + i + " , String: " + s );
      }
  public static void main( String[] args ) {
    f ( " String first ", 11 );
    f ( 99, " Int first " );
  }
}```
甚至参数顺序不同也可以区分开。
***
###基本类型的重载
基本类型从“较小”的类型自动提升到一个“较大”的类型,此过程一旦牵涉到重载,可能会造成一些混淆。
```java
public class PrimitiveOverLoading79 {
    void f1( char x ) { System.out.print( " f1( char ) " ); }
    void f1( byte x ) { System.out.print( " f1( byte ) " ); }
    void f1( short x ) { System.out.print( " f1( short ) " ); }
    void f1( int x ) { System.out.print( " f1( int ) " ); }
    void f1( long x ) { System.out.print( " f1( long) " ); }
    void f1( float x ) { System.out.print( " f1( float ) " ); }
    void f1( double x ) { System.out.print( " f1( double ) " ); }
    void f2( byte x ) { System.out.print( " f2( byte ) " ); }
    void f2( short x ) { System.out.print( " f2( short ) " ); }
    void f2( int x ) { System.out.print( " f2( int ) " ); }
    void f2( long x ) { System.out.print( " f2( long ) " ); }
    void f2( float x ) { System.out.print( " f2( float ) " ); }
    void f2( double x ) { System.out.print( " f2( double ) " ); }       
    void f3( short x ) { System.out.print( " f3( short ) " ); }
    void f3( int x ) { System.out.print( " f3( int ) " ); }
    void f3( long x ) { System.out.print( " f3( long ) " ); }
    void f3( float x ) { System.out.print( " f3( float ) " ); }
    void f3( double x ) { System.out.print( " f3( double ) " ); }
    void f4( int x ) { System.out.print( " f4( int ) " ); }
    void f4( long x ) { System.out.print( " long: " ); }
    void f4( float x ) { System.out.print( " f4( float ) " ); }
    void f4( double x ) { System.out.print( " f4( double ) " ); }
    void f5( long x ) { System.out.print( " f5( long: ): " ); }
    void f5( float x ) { System.out.print( " f5( float ) " ); }
    void f5( double x ) { System.out.print( " f5( double ) " ); }
    void f6( float x ) { System.out.print( " f6( float ) " ); }
    void f6( double x ) { System.out.print( " f6( double ) " ); }
    void f7( double x ) { System.out.print( " f7( double ) " ); }
    void testConstVal() {
        System.out.print( " 5: " );
        f1( 5 ); f2( 5 ); f3( 5 ); f4( 5 ); f5( 5 ); f6( 5 ); f7( 5 );
        System.out.println( );
    }
    void testChar() {
        char x ;
        System.out.print( " char: " );
        f1( 'x' ); f2( 'x' ); f3( 'x' ); f4( 'x' ); f5( 'x' ); f6( 'x' ); f7( 'x' );
        System.out.println( );   
    }
    void testByte() {
        byte x = 0;
        System.out.print( " byte: " );
        f1( x ); f2( x ); f3( x ); f4( x ); f5( x ); f6( x ); f7( x );
        System.out.println( );
    }
    void testShort() {
        short x = 0;
        System.out.print( " short: " );
        f1( x ); f2( x ); f3( x ); f4( x ); f5( x ); f6( x ); f7( x );
        System.out.println( );
    }
    void testInt() {
        int x = 0;
        System.out.print( " int: " );
        f1( x ); f2( x ); f3( x ); f4( x ); f5( x ); f6( x ); f7( x );
        System.out.println( );
    }
    void testLong() {
        long x = 0;
        System.out.print( " long: " );
        f1( x ); f2( x ); f3( x ); f4( x ); f5( x ); f6( x ); f7( x );
        System.out.println( );  
    }
    void testFloat() {
        float x = 0;
        System.out.print( " float: " );
        f1( x ); f2( x ); f3( x ); f4( x ); f5( x ); f6( x ); f7( x );
        System.out.println( );
    }
    void testDouble() {
        double x = 0;
        System.out.print( " double: " );
        f1( x ); f2( x ); f3( x ); f4( x ); f5( x ); f6( x ); f7( x );
        System.out.println( );
    }
    public static void main( String[] agrs ) {
        PrimitiveOverLoading79 p = new PrimitiveOverLoading79();
        p.testConstVal();
        p.testChar();
        p.testByte();
        p.testShort();
        p.testInt();
        p.testLong();
        p.testFloat();
        p.testDouble();
    }
}```
![Paste_Image.png](http://upload-images.jianshu.io/upload_images/2562717-f7238139ad24a0f8.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
***
当传入的实际参数大于重载方法声明的形式参数:
```java
public class Demotion81 {
    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( short x ) { System.out.println( " f3( short :  ) " ); }
    void f3( long x ) { System.out.println( " f3( long :  ) " ); }
    void f3( int x ) { System.out.println( " f3( int :  ) " ); }
    void f3( byte x ) { System.out.println( " f3( byte :  ) " ); }
    void f4( char x ) { System.out.println( " f4( char ) " ); }
    void f4( int x ) { System.out.println( " f4( int :  ) " ); }
    void f4( byte x ) { System.out.println( " f4( byte :  ) " ); }
    void f4( float x ) { System.out.println( " f4( float :  ) " ); }
    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( ( float )x ); f3( ( long )x ); f4( ( int )x ); f5( ( short )x ); f6( ( byte )x ); f7( ( char )x );
/*  void test() {
        System.out.println( " test :  " );
        f1( 1 ); f2( 1 ); f3( 1 ); f4( 1 ); f5( 1 ); f6( 1 ); f7( 1 ); */
    } 
    public static void main( String[] args ) {
        Demotion81 p = new Demotion81();
        p.testDouble();
        //p.test();
    } 
}```
![Paste_Image.png](http://upload-images.jianshu.io/upload_images/2562717-6a3f5de948b31df8.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
在这里传入的实际参数比较大,通过类型转换执行窄化转换。如果不这样做,编译器就会报错。
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,905评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,140评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,791评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,483评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,476评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,516评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,905评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,560评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,778评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,557评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,635评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,338评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,925评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,898评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,142评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,818评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,347评论 2 342

推荐阅读更多精彩内容