GithubHelp home page GithubHelp logo

j143 / java-capstone-01 Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 0.0 22 KB

HR App to print Employee and Department information

Home Page: https://dev.to/j143/day-12-of-100-java-2a16

Java 100.00%
java example-project

java-capstone-01's Introduction

java-capstone-01

HR App to print Employee and Department information

public class HRApp {
    public static void main(String [] args) {
        System.out.println("test harness");
        Employee Jason = new Employee(21, "Jason", 20000.02);
        Employee Clarice = new Employee(23, "Clarice", 23000.10);
        System.out.println(Jason.toString());
        System.out.println(Clarice.toString());

        Department department1 = new Department("Physics");
        department1.addEmployee(Jason);
        department1.addEmployee(Clarice);
        department1.getAllEmployees();

    }
}

issues

output

Employee: 71 Clarice 23000.1
Employee: 71 Clarice 23000.1
Employee: 102 Mathison 40000.0
Employee: 102 Mathison 40000.0
Employee: 102 Mathison 40000.0
Employee: 102 Mathison 40000.0
120000.0
40000.0

Only the last added element is available. Something to do with static keyword.

java-capstone-01's People

Contributors

j143 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.