কম্পিউটার

C# এ ক্লাস


ডাটা টাইপের ব্লুপ্রিন্ট হল যাকে আপনি C#-এ ক্লাস বলতে পারেন। অবজেক্ট হল একটি ক্লাসের উদাহরণ। যে পদ্ধতি এবং ভেরিয়েবলগুলি একটি ক্লাস গঠন করে সেগুলিকে ক্লাসের সদস্য বলা হয়৷

উদাহরণ

নিম্নলিখিতটি C# −

-এ একটি শ্রেণীর সাধারণ রূপ
<access specifier> class class_name {
   // member variables
   <access specifier><data type> variable1;
   <access specifier><data type> variable2;
   ...
   <access specifier><data type> variableN;
   // member methods
   <access specifier><return type> method1(parameter_list) {
      // method body
   }
   <access specifier><return type> method2(parameter_list) {
      // method body
   }
   ...
   <access specifier><return type> methodN(parameter_list) {
      // method body
   }
}

C# −

-এ কীভাবে একটি ক্লাস তৈরি করা যায় তা শিখতে একটি উদাহরণ দেখা যাক

উদাহরণ

using System;

namespace Demo {
   class Box {
      public double length; // Length of a box
      public double breadth; // Breadth of a box
      public double height; // Height of a box
   }

   class Boxtester {
      static void Main(string[] args) {
         Box Box1 = new Box(); // Declare Box1 of type Box
         Box Box2 = new Box(); // Declare Box2 of type Box
         double volume = 0.0; // Store the volume of a box here

         // box 1 specification
         Box1.height = 5.0;
         Box1.length = 6.0;
         Box1.breadth = 7.0;

         // box 2 specification
         Box2.height = 10.0;
         Box2.length = 12.0;
         Box2.breadth = 13.0;

         // volume of box 1
         volume = Box1.height * Box1.length * Box1.breadth;
         Console.WriteLine("Volume of Box1 : {0}", volume);

         // volume of box 2
         volume = Box2.height * Box2.length * Box2.breadth;
         Console.WriteLine("Volume of Box2 : {0}", volume);
         Console.ReadKey();
      }
   }
}

আউটপুট

Volume of Box1 : 210
Volume of Box2 : 1560

  1. C# এ কনসোল ক্লাস

  2. সি# এ সিঙ্গেলটন ক্লাস

  3. C# এ ক্লাসের উদাহরণগুলি কী কী?

  4. C# এ একটি ক্লাসের সদস্য ফাংশন কি কি?