Enter your Sign-on user name and password.

Forgot password?
  • Follow us on:
Loading video...

QuickNotes™  

Using Objects

  • Objects are instances of classes. for example to declare an object of Employee class type:

  • 	Employee emp ;
    	
  • To instantiate (allocate memory and initialize) an object key word new is used:

  • 	emp = new Employee() ;
    	
  • Objects can be declared and instantiated at the same time:

  • 	Employee emp = new Employee() ; 
    	
  • To access an object methods it has to be instantiated. To access a method DOT . (access operator) is used

  • 	emp.print();  // calls the print method associated with Employee class
    	String name = emp.getName() ; 
    	
Mathematics:
Basic Math
Pre-Algebra
Algebra I
Algebra II
Geometry
Trigonometry
Pre-Calculus
Calculus I
Calculus II
Multivariable Calculus
Statistics
Chemistry:
General Chemistry
Organic Chemistry
Physics:
High School Physics
AP Physics B (Mechanics)
AP Physics C (Electricty & Magnetism)
Biology:
General Biology
AP Biology
(AP) Advanced Placement:
AP Calculus AB
AP Calculus BC
AP Biology
AP Chemistry
AP Physics B (Mechanics)
AP Physics C (Mechanics)
AP Physics C (Electricty & Magnetism)
AP Statistics
AP Computer Science: Java
Computer Science:
HTML Training
CSS Intro
Java
JavaScript
Introduction to PHP
Wordpress Training
XML Training