একটি মেম্বার ফাংশন অর্থাৎ ক্লাসের পদ্ধতি হল এমন একটি ফাংশন যার সংজ্ঞা বা প্রোটোটাইপ ক্লাসের সংজ্ঞার মধ্যে অন্য যেকোন ভেরিয়েবলের মতোই থাকে। এটি ক্লাসের যেকোন অবজেক্টের উপর কাজ করে যার এটি সদস্য, এবং সেই বস্তুর জন্য একটি ক্লাসের সকল সদস্যের অ্যাক্সেস আছে।
নিম্নলিখিত একটি উদাহরণ -
public void setLength( double len ) {
length = len;
}
public void setBreadth( double bre ) {
breadth = bre;
} C# −
-এ কীভাবে ক্লাস মেম্বার ফাংশন অ্যাক্সেস করতে হয় তা দেখানোর একটি উদাহরণ নিচে দেওয়া হলউদাহরণ
using System;
namespace BoxApplication {
class Box {
private double length; // Length of a box
private double breadth; // Breadth of a box
private double height; // Height of a box
public void setLength( double len ) {
length = len;
}
public void setBreadth( double bre ) {
breadth = bre;
}
public void setHeight( double hei ) {
height = hei;
}
public double getVolume() {
return length * breadth * height;
}
}
class Boxtester {
static void Main(string[] args) {
Box Box1 = new Box(); // Declare Box1 of type Box
Box Box2 = new Box();
double volume;
// Declare Box2 of type Box
// box 1 specification
Box1.setLength(8.0);
Box1.setBreadth(9.0);
Box1.setHeight(7.0);
// box 2 specification
Box2.setLength(18.0);
Box2.setBreadth(20.0);
Box2.setHeight(17.0);
// volume of box 1
volume = Box1.getVolume();
Console.WriteLine("Volume of Box1 : {0}" ,volume);
// volume of box 2
volume = Box2.getVolume();
Console.WriteLine("Volume of Box2 : {0}", volume);
Console.ReadKey();
}
}
} আউটপুট
Volume of Box1 : 504 Volume of Box2 : 6120
সদস্য ভেরিয়েবল অর্থাৎ শ্রেণী সদস্যরা হল একটি বস্তুর বৈশিষ্ট্য (নকশা দৃষ্টিকোণ থেকে) এবং এগুলিকে এনক্যাপসুলেশন বাস্তবায়নের জন্য ব্যক্তিগত রাখা হয়। এই ভেরিয়েবলগুলি শুধুমাত্র পাবলিক মেম্বার ফাংশন ব্যবহার করে অ্যাক্সেস করা যেতে পারে।
নীচের দৈর্ঘ্য এবং প্রস্থ হল সদস্য ভেরিয়েবল কারণ এই ভেরিয়েবলের একটি নতুন উদাহরণ আয়তক্ষেত্র শ্রেণীর প্রতিটি নতুন উদাহরণের জন্য তৈরি করা হবে।
উদাহরণ
using System;
namespace RectangleApplication {
class Rectangle {
//member variables
private double length;
private double width;
public void Acceptdetails() {
length = 10;
width = 14;
}
public double GetArea() {
return length * width;
}
public void Display() {
Console.WriteLine("Length: {0}", length);
Console.WriteLine("Width: {0}", width);
Console.WriteLine("Area: {0}", GetArea());
}
}//end class Rectangle
class ExecuteRectangle {
static void Main(string[] args) {
Rectangle r = new Rectangle();
r.Acceptdetails();
r.Display();
Console.ReadLine();
}
}
} আউটপুট
Length: 10 Width: 14 Area: 140