اذهب إلى المحتوى

Recommended Posts

  • 0
نشر

أهلاً بك . 
هذا كلاس للموظفين بالغة الجافا يحتوي على 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() + 
            "]";
    }
 
}

 

شكراً  لك .  
 

انضم إلى النقاش

يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.

زائر
أجب على هذا السؤال...

×   لقد أضفت محتوى بخط أو تنسيق مختلف.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   جرى استعادة المحتوى السابق..   امسح المحرر

×   You cannot paste images directly. Upload or insert images from URL.

  • إعلانات

  • تابعنا على



×
×
  • أضف...