Objects can be passed to methods : Parameters Passing « Language Basics « C# / C Sharp






Objects can be passed to methods

Objects can be passed to methods
/*
C#: The Complete Reference 
by Herbert Schildt 

Publisher: Osborne/McGraw-Hill (March 8, 2002)
ISBN: 0072134852
*/
// Objects can be passed to methods.  
 
using System; 
 
class MyClass {  
  int alpha, beta; 
  
  public MyClass(int i, int j) {  
    alpha = i;  
    beta = j;  
  }  
  
  /* Return true if ob contains the same values 
     as the invoking object. */ 
  public bool sameAs(MyClass ob) {  
    if((ob.alpha == alpha) & (ob.beta == beta)) 
       return true;  
    else return false;  
  }  
 
  // Make a copy of ob. 
  public void copy(MyClass ob) { 
    alpha = ob.alpha; 
    beta  = ob.beta; 
  } 
 
  public void show() { 
    Console.WriteLine("alpha: {0}, beta: {1}", 
                      alpha, beta); 
  } 
}  
  
public class PassOb {  
  public static void Main() { 
    MyClass ob1 = new MyClass(4, 5);  
    MyClass ob2 = new MyClass(6, 7);  
  
    Console.Write("ob1: "); 
    ob1.show(); 
 
    Console.Write("ob2: "); 
    ob2.show(); 
 
    if(ob1.sameAs(ob2))  
      Console.WriteLine("ob1 and ob2 have the same values."); 
    else 
      Console.WriteLine("ob1 and ob2 have different values."); 
 
    Console.WriteLine(); 
 
    // now, make ob1 a copy of ob2 
    ob1.copy(ob2); 
 
    Console.Write("ob1 after copy: "); 
    ob1.show(); 
 
    if(ob1.sameAs(ob2))  
      Console.WriteLine("ob1 and ob2 have the same values."); 
    else 
      Console.WriteLine("ob1 and ob2 have different values."); 
 
  }  
} 

           
       








Related examples in the same category

1.Parameter out and referenceParameter out and reference
2.Passing Parameters By Value and By RefPassing Parameters By Value and By Ref
3.Simple types are passed by valueSimple types are passed by value
4.Objects are passed by referenceObjects are passed by reference
5.Use ref to pass a value type by referenceUse ref to pass a value type by reference
6.Swap two valuesSwap two values
7.Use outUse out
8.Use two out parametersUse two out parameters
9.Swap two referencesSwap two references
10.Demonstrate paramsDemonstrate params
11.Use regular parameter with a params parameterUse regular parameter with a params parameter
12.Parameter demoParameter demo
13.Passing parameters by referencePassing parameters by reference
14.Passing parameters by valuePassing parameters by value
15.Illustrates the use of out parametersIllustrates the use of out parameters
16.Pass value by referencePass value by reference
17.Pass value by reference with read only valuePass value by reference with read only value
18.Ref and Out Parameters: compiling error
19.C# Ref and Out ParametersC# Ref and Out Parameters
20.Ref and Out Parameters 2Ref and Out Parameters 2