java(day-14)

 create own class:

package com.company;


class Employee{

    int id;

    int salary;

    String name;

    public void printDetails(){

        System.out.println("My id is " + id);

        System.out.println("and my name is "+ name);

    }


    public int getSalary(){

        return salary;

    }

}


public class cwh_38_custom_class {

    public static void main(String[] args) {

        System.out.println("This is our custom class");

        Employee harry = new Employee(); // Instantiating a new Employee Object

        Employee john = new Employee(); // Instantiating a new Employee Object


        // Setting Attributes for Harry

        harry.id = 12;

        harry.salary = 34;

        harry.name = "CodeWithHarry";


        // Setting Attributes for John

        john.id = 17;

        john.salary = 12;

        john.name = "John Khandelwal";


        // Printing the Attributes

        harry.printDetails();

        john.printDetails();

        int salary = john.getSalary();

        System.out.println(salary);

        // System.out.println(harry.id);

        // System.out.println(harry.name);

    }

}


Comments

Popular posts from this blog

java chapter11 practice question on abstruct class and interfaces

java practice set 8

new stored procidure with interval and frequery code