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

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 ; }     ...

ASP.NET MVC Views

Views in ASP.NET MVC Application explained Find a related article By  Steve Smith  and  Luke Latham from Microsoft Corporation here In the Model-View-Controller (MVC) pattern, the  view  handles the application's data presentation and user interaction. A view is an HTML template with embedded  Razor markup . Razor markup is code that interacts with HTML markup to produce a webpage that's sent to the client. In ASP.NET MVC, views are  .cshtml  files that use the  C# programming language  in Razor markup. Usually, view files are grouped into folders named for each of the application's  controllers . The folders are stored in a  Views  folder at the root of the application as shown: The  Home  controller is represented by a  Home  folder inside the  Views  folder.  The  Home  folder contains the views for the  About ,  Contact , and  Index...

ASP.NET MVC Routing

ASP.NET MVC Routing ASP.NET MVC routing is a pattern matching system that is responsible for mapping incoming browser requests to specified MVC controller actions. When the ASP.NET MVC application launches then the application registers one or more patterns with the framework's route table to tell the routing engine what to do with any requests that matches those patterns. When the routing engine receives a request at runtime, it matches that request's URL against the URL patterns registered with it and gives the response according to a pattern match. Routing pattern is as follows A URL is requested from a browser, the URL is parsed (that is, break into controller and action), the parsed URL is compared to registered route pattern in the framework’s route table, if a route is found, its process and send response to the browser with the required response, otherwise, the HTTP 404 error is send to the browser. Route Properties ASP.NET MVC routes are res...