base keyword

In this chapter you will learn:

  1. Using base to Access a Hidden Name
  2. Call constructor in base class

Using base keyword

'base' refers to the base class of the derived class in which it is used. This usage has the following general form:

base.member

The following code uses base keyword to access field in the base class.

using System;/*  ja va 2 s  .co m*/

class BaseClass                                      
{
   public string Field1 = "In the base class";
}

class DerivedClass : BaseClass                        
{
   new public string Field1 = "In the derived class";

   public void Display()
   {
      Console.WriteLine("{0}", Field1);              // Access the derived class.
      Console.WriteLine("{0}", base.Field1);         // Access the base class.
   }
}

class Program
{
   static void Main()
   {
      DerivedClass oc = new DerivedClass();
      oc.Display();
   }
}

The code above generates the following result.

Call constructor from base class

The following code shows how to call constructor from base class with base keyword.

using System;/*from jav  a  2  s  .c om*/

public class BaseClass
{
    public BaseClass(int x)
    {
        this.x = x;
    }
    public int X
    {
        get
        {
            return(x);
        }
    }
    int    x;
}

public class Derived: BaseClass
{
    public Derived(int x): base(x)
    {
    }
}

class MainClass
{
    public static void Main()
    {
        Derived d = new Derived(15);
        Console.WriteLine("X = {0}", d.X);
    }
}

The code above generates the following result.

Next chapter...

What you will learn in the next chapter:

  1. A demo showing what is name hiding
  2. How to use base to reference parent class
  3. How to call a hiddel method from parent class
Home » C# Tutorial » Class
Classes and Structs
Encapsulation
Class and Struct Accessibility
Members
Static Members
Class
Class instance variables
Class instance Methods
Class Inheritance
Class constructor
Default constructors
Parameters of constructors
Constructor overloading
Static Constructor
Destructor
Override destructor
new operator
Class field
Static Fields
Read only field
Field default value
const value
Abstract class
Static Class
Partial type
Methods
Method local variable
Method Overloading
Method overloading with ref and out
Type conversion and method overloading
Error in Method overloading
virtual methods
Override methods
Method Parameter
Pass parameters
ref parameters
out parameters
Variable parameter length
Optional parameters
Named parameters
static method
function Return
Recursive methods
Virtual methods and polymorphism
Cast
Shadow inherited members
Seal a member
this keyword
base keyword
base and name hiding
Access Specifiers
private
public
protected
internal
Indexer
String type indexer
Multidimensional indexer
Indexer overloading
Indexer to append
Indexer logic
Properties
Properties getter and setter
Accessibilities of properties
Automatic properties
Read only and write only property
Virtual properties
Abstract Properties
Static Properties
interface
interface implementation
Explicit interface implementation
Interface inheritance
Indexer in an interface
Interface Properties
struct and interface
virtual interface implementation
as operator
is operator
null reference
Nested classes
object class
ToString method
GetHashCode
Object initialization
Extension method
Struct Instances vs. Class Instances