Below are some critical terms necessary to understand Java Programming Language. Make sure you go through all of them..
Variable :The primary way programming languages store state.
Method:A way of doing something: A programmer-defined expression. Takes inputs, does actions, and then returns outputs.
Type + Name:The general way of declaring something in Java.
Class:A blueprint for a type of object; a user-defined type of object. In a car metaphor, a engineers' blueprints and designs for a car.
Instance:A member of a class; an object. In a car metaphor, a physical, drive-able car, which may differ in state and behavior from other cars.
Constructor:A special kind of method that initializes a newly created object. Its return type and name are combined, and must be the name of the class in which this special method is declared.
Object-Oriented Paradigm:
The programming paradigm that holds that "computers can model any relevant task as interactions among a system of objects"
Object:
Something that has state and behavior. Interchangeable with "instance of a class.
No comments:
Post a Comment