Nour Lattouf نشر 3 سبتمبر 2020 أرسل تقرير مشاركة نشر 3 سبتمبر 2020 اقتباس رابط هذا التعليق شارك على الشبكات الإجتماعية More sharing options...
0 ماجد قطوسة نشر 3 سبتمبر 2020 أرسل تقرير مشاركة نشر 3 سبتمبر 2020 أهلاً بك . هذا كلاس للموظفين بالغة الجافا يحتوي على get and set و يحتوي على اسم الموظف و الراتب //class name | اسم الكلاس public class Employee{ private String name; private int salary; public Employee(){ } //constructor public Employee(int salary, String name){ this.salary = salary; this.name = name; } // get and set public String getName() { return name; } public void setName(String name) { this.name = name; } public int getSAlary() { return salary; } public void setSalary(int salary) { this.salary = salary; } // to String function public String toString(){ return "[" + this.getName() + " : " + this.getSalary() + "]"; } } شكراً لك . 2 اقتباس رابط هذا التعليق شارك على الشبكات الإجتماعية More sharing options...
السؤال
Nour Lattouf
رابط هذا التعليق
شارك على الشبكات الإجتماعية
1 جواب على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.