Coder Social home page Coder Social logo

savingsaccountmethod's Introduction

Methods

--Create object behavior using methods 


Methods                               Fields

(behavior)                            (state)
------------                        ------------
withdrawal, deposit                    balance


State tells us what a savings account should know:
    The balance of money available


The behavior tells us what tasks a savings account should be able to perform:
    Depositing - increasing the amount available 
    Withdrawing - decreasing the amount available 
    Checking the balance - displaying the amount available 
    Transaction -- displaying detailed transaction 

Methods are repeatable, modular blocks of code used to accomplish specific tasks

Scope 
    A method is task that an object of a class performs 
    We mark of the domain of this task using a curly braces { , and }

    Everything inside the {} <---- is part of the task. 
        ** This domain inside teh {} is called scope 

    
    Adding Parameters


    Returns


    Remember, variables can only exist in the scope that they were declared in. We can use a value outside of the method it was created in if we return it from the method. 

    We return a value by using the keyword return:

    public int numberOfTire () {
        int tires = 4;

            return tires;
    }


    Void keywords mean completely empty and indicates that no value is returned after calling that method.

    The toString() Method

savingsaccountmethod's People

Contributors

fouzih 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.