Skip to main content

The Static keyword in C# with Example

The Static keyword in C# with Example

Static is a keyword or a modifier which is use to make a classmethods or variable properties as not instantiable, that means we cannot instantiate the items which we declared with a static modifier.

 

The static members which we declared can be accessed directly with a type name. Suppose if we apply a static modifier to a class property or to a method or variable, then we can access those static members directly with a class name, instead of creating an object of a class to access those properties.

 

Static Variables Declaration

The following is the example of defining a class with static properties and those can be accessed directly with the type instead of a specific object name.

 

     class User

    {

        public static string name;

        public static string location;

        public static int age;

    }

From the above example, we defined variables with static keyword, we can then access those variables directly with a type name like User.name, User.location and User.age.

 

Below is the examples of how to access the variables directly with a type name in C#.

 

     Console.WriteLine(User.name);

            Console.WriteLine(User.location);

            Console.WriteLine(User.age);

 

The above statements, shows that we can access our static properties directly by using class name instead of with class instance using class and dot notation.

 

Generally, instance of a class will contain a separate copy of all instance fields so the memory consumption will increase automatically, but if we use static modifier there is only one copy of each field so automatically the memory will be managed efficiently.

 

We can use static modifier with classesmethods, properties, constructors, operators, fields and with events but it cannot be used with indexersfinalizers or types other than classes.

 

Static Keyword Example in C#

 

The following is the example for creating a class by including both static and non-static variables & methods. Here we can access non-static variables and methods by creating an instance of the class, but it is not possible for us to access the static fields with an instance of the class so the static variables and methods can be accessed directly with the class name.

 

using System;

namespace CsharpnaijaTutorial

{

    class User

    {

        // Static Variables

        public static string name, location;

        //Non Static Variable

        public int age;

        // Non Static Method

        public void Details()

        {

            Console.WriteLine("Non Static Method");

        }

        // Static Method

        public static void Details1()

        {

            Console.WriteLine("Static Method");

        }

    }

    class Program

    {

        static void Main(string[] args)

        {

            User user = new User();

            user.age = 32;

            user.Details();

            User.name = "Musa Gadabs";

            User.location = "Abuja";

 Console.WriteLine($"Name: {User.name}, Location: {User.location}, Age: {user.age}");

            User.Details1();

            Console.WriteLine("\nPress Enter Key to Exit..");

            Console.ReadLine();

        }

    }

 

}

 

From the above example, we created a class called “User” with static and non-static variables & methods. We are accessing non-static variables and methods with an instance of User class and static fields and methods are accessed directly with the class name (User).

 

Thank you

 

References

1.     Tutlane

2.     Guru99

 


Comments

Popular posts from this blog

The String.Join Method in C# Explained

The String.Join Method in C#   The string.Join concatenates the elements of a specified array or the members of a collection, using the specified separator between each element or member. Overloads of string.Join Method Description Join(Char, Object[]) Concatenates the string representations of an array of objects, using the specified separator between each member. Join(Char, String[]) Concatenates an array of strings, using the specified separator between each member. Join(String, IEnumerable<String>) Concatenates the members of a constructed IEnumerable<T> collection of type String, using the specified separator between each member. Join(String, Object[]) Concatenates the elements of an object array, using the specified separator between each element. Join(String, String[]) Concatenates all the elements of a string array, usi...

Models in ASP.NET MVC

Models in ASP.NET MVC Explained A model is a class that contains the business logic of your application. It also used for accessing data from the database. The model class does not handle directly input from the browser. In MVC, it is the Controller that handle input from the browser directly and process the request by receiving data from the model and pass it back to view as response. It does not contain any HTML code either. It is a best practice but not mandatory for developers to not have any communications with the view directly, models should only contain a POCO ( Plain Old CLR Objects ) classes. All processing logic and communication with the view should be handled by another layer called Viewmodels. Models are also refers as objects that are used to implement conceptual logic for the application. A controller interacts with the model, access the data, perform the logic and pass that data to the view. Note that it is not mandatory, but it is a good programming...

Classes in C# Explained

C# Class Explained A class is nothing but an encapsulation of properties and methods that are used to represent a real-time entity, as explained by Guru99 . For instance, if you want to work with Guest’s data as in our previous DataDriven Web application . The properties of the Guest would be the Id, GuestName, Address, Phone number etc of the Guest. The methods would include the entry and modification of Guest data. All of these operations can be represented as a class in C# as shown below. using System; namespace CsharpnaijaClassTutorial {     public class Guest     {         public int Id { get ; set ; }         public string GuestName { get ; set ; }         public string Address { get ; set ; }         public string WhomToSee { get ; set ; }     ...