Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 534 Bytes

this.md

File metadata and controls

23 lines (15 loc) · 534 Bytes

كلمة الـ this :

يتم استخدام الكلمة الأساسية "this" في C # للإشارة إلى instance الحالي للفئة. يتم استخدامه أيضًا للتمييز بين parameters الداله وحقول الفئة إذا كان كلاهما يحمل نفس الاسم.

مثال:

  public Student(int id, String name, int age, String subject) {
   this.id = id;
   this.name = name;
   this.subject = subject;
   this.age = age;
}