Automatic type conversions can affect overloaded method resolution : Class Method « Class Interface « C# / C Sharp






Automatic type conversions can affect overloaded method resolution

Automatic type conversions can affect 
   overloaded method resolution
/*
C#: The Complete Reference 
by Herbert Schildt 

Publisher: Osborne/McGraw-Hill (March 8, 2002)
ISBN: 0072134852
*/


/* Automatic type conversions can affect 
   overloaded method resolution. */ 
 
using System; 
 
class Overload2 { 
  public void f(int x) { 
    Console.WriteLine("Inside f(int): " + x); 
  } 
 
  public void f(double x) { 
    Console.WriteLine("Inside f(double): " + x); 
  } 
} 
 
public class TypeConv { 
  public static void Main() { 
    Overload2 ob = new Overload2(); 
 
    int i = 10; 
    double d = 10.1; 
 
    byte b = 99; 
    short s = 10; 
    float f = 11.5F; 
 
 
    ob.f(i); // calls ob.f(int) 
    ob.f(d); // calls ob.f(double) 
 
    ob.f(b); // calls ob.f(int) -- type conversion 
    ob.f(s); // calls ob.f(int) -- type conversion 
    ob.f(f); // calls ob.f(double) -- type conversion 
  } 
}


           
       








Related examples in the same category

1.Method Attributes
2.Define methods that return a value and accept parametersDefine methods that return a value and accept parameters
3.Class a class methodClass a class method
4.Call class methods 2Call class methods 2
5.Method overloading testMethod overloading test
6.Add a method to BuildingAdd a method to Building
7.A simple example that uses a parameterA simple example that uses a parameter
8.Add a method that takes two argumentsAdd a method that takes two arguments
9.Use a class factoryUse a class factory
10.Return an arrayReturn an array
11.Demonstrate method overloadingDemonstrate method overloading
12.A simple example of recursionA simple example of recursion
13.Overloading ClassesOverloading Classes
14.C# Classes Member FunctionsC# Classes Member Functions
15.change field value in a method