Giter Club home page Giter Club logo

bytebank's Introduction

Classe Funcionario

import groovy.lang.GString;

public class Funcionario {

    private String nome;
    private String cpf;
    private double salario;


    public double getBonificacao() {
        return this.salario * 0.05;
    }

       public String getNome () {
           return nome;
       }
        public void setNome (String nome){
            this.nome = nome;
        }
        public String getCpf () {
            return cpf;
        }
        public void setCpf (String cpf){
            this.cpf = cpf;
        }
        public double getSalario () {
            return salario;
        }
        public void setSalario ( double salario){
            this.salario = salario;
        }
    }

#Classe Gerente

public class Gerente extends Funcionario {

    private int senha;

    public void setSenha(int senha) {
        this.senha = senha;
    }

    public boolean autentica(int senha) {
        if(this.senha == senha) {
            return true;
        } else {
            return false;
        }
    }

    public double getBonificacao() {
        return super.getBonificacao() + super.getSalario();
    }
}

Testa Referencia

public class TesteReferencias {
    public static void main(String[] args) {

        Funcionario g1 = new Gerente();

        g1.setNome("Marcos");
        String nome = g1.getNome();

       // g1.autentica(222);

        System.out.println(nome);
    }
}

Testa Funcionario

public class TesteFuncionario {

    public static void main(String[] args) {

        Funcionario nico = new Funcionario();
        nico.setNome("Nico Steppat");
        nico.setCpf("223355646-9");
        nico.setSalario(2600.00);

        System.out.println(nico.getNome());
        System.out.println(nico.getBonificacao());

        //nico.salario = 300.0;

    }

}

#Testa Gerente

public class TesteGerente {

    public static void main(String [] args) {
        Gerente g1 = new Gerente();
        g1.setNome("Marco");
        g1.setCpf("23556813");
        g1.setSalario(5000.0);

        System.out.println(g1.getNome());
        System.out.println(g1.getCpf());
        System.out.println(g1.getSalario());

        g1.setSenha(2222);
        boolean autenticou = g1.autentica(2222);

        System.out.println(autenticou);

        System.out.println(g1.getBonificacao());

    }

}

bytebank's People

Contributors

jessicacorreaes avatar

Watchers

 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.