SlideShare a Scribd company logo
1 of 25
Download to read offline
1 © 2001-2002 Marty Hall, Larry Brown http://www.corewebprogramming.com
Web
core
programming
Basic Object-Oriented
Programming in Java
www.corewebprogramming.com
Object-Oriented Nomenclature
• “Class” means a category of things
– A class name can be used in Java as the type of a field or
local variable or as the return type of a function (method)
• “Object” means a particular item that
belongs to a class
– Also called an “instance”
• For example, consider the following line:
String s1 = "Hello";
– Here, String is the class, s1 is an instance variable of class
String, whose value is the String object "Hello"
www.corewebprogramming.com
Example 1: Instance Variables
(“Fields” or “Data Members”)
class Ship1 {
public double x, y, speed, direction;
public String name;
}
public class Test1 {
public static void main(String[] args) {
Ship1 s1 = new Ship1();
s1.x = 0.0;
s1.y = 0.0;
s1.speed = 1.0;
s1.direction = 0.0; // East
s1.name = "Ship1";
System.out.println(s1.name + " is initially at ("
+ s1.x + "," + s1.y + ").");
s1.x = s1.x + s1.speed
* Math.cos(s1.direction * Math.PI / 180.0);
s1.y = s1.y + s1.speed
* Math.sin(s1.direction * Math.PI / 180.0);
System.out.println(s1.name + " has moved to ("
+ s1.x + "," + s1.y + ").");
}
www.corewebprogramming.com
Instance Variables: Results
• Compiling and Running:
javac Test1.java
java Test1
Output:
Ship1 is initially at (1,0).
Ship2 has moved to (-1.41421,1.41421).
www.corewebprogramming.com
Example 1: Major Points
• Java naming convention
• Format of class definitions
• Creating classes with “new”
• Accessing fields with
“variableName.fieldName”
www.corewebprogramming.com
Java Naming Conventions
• Leading uppercase letter in class name
public class MyClass {
...
}
• Leading lowercase letter in field, local
variable, and method (function) names
– myField, myVar, myMethod
www.corewebprogramming.com
First Look at Java Classes
• The general form of a simple class is
modifier class Classname {
modifier data-type field1;
modifier data-type field2;
...
modifier data-type fieldN;
modifier Return-Type methodName1(parameters) {
//statements
}
...
modifier Return-Type methodName2(parameters) {
//statements
}
}
www.corewebprogramming.com
Objects and References
• Once a class is defined, you can easily
declare a variable (object reference) of the
class
Ship s1, s2;
Point start;
Color blue;
• Object references are initially null
– The null value is a distinct type in Java and should not
be considered equal to zero
– A primitive data type cannot be cast to an object (use
wrapper classes)
• The new operator is required to explicitly
create the object that is referenced
ClassName variableName = new ClassName();
www.corewebprogramming.com
Accessing Instance Variables
• Use a dot between the variable name and the field
name, as follows:
variableName.fieldName
• For example, Java has a built-in class called Point
that has x and y fields
Point p = new Point(2, 3); // Build a Point object
int xSquared = p.x * p.x; // xSquared is 4
p.x = 7;
• One major exception applies to the “access fields
through varName.fieldName” rule
– Methods can access fields of current object without varName
– This will be explained when methods (functions) are discussed
www.corewebprogramming.com
Example 2: Methods
class Ship2 {
public double x=0.0, y=0.0, speed=1.0, direction=0.0;
public String name = "UnnamedShip";
private double degreesToRadians(double degrees) {
return(degrees * Math.PI / 180.0);
}
public void move() {
double angle = degreesToRadians(direction);
x = x + speed * Math.cos(angle);
y = y + speed * Math.sin(angle);
}
public void printLocation() {
System.out.println(name + " is at ("
+ x + "," + y + ").");
}
}
www.corewebprogramming.com
Methods (Continued)
public class Test2 {
public static void main(String[] args) {
Ship2 s1 = new Ship2();
s1.name = "Ship1";
Ship2 s2 = new Ship2();
s2.direction = 135.0; // Northwest
s2.speed = 2.0;
s2.name = "Ship2";
s1.move();
s2.move();
s1.printLocation();
s2.printLocation();
}
}
• Compiling and Running:
javac Test2.java
java Test2
• Output:
Ship1 is at (1,0).
Ship2 is at (-1.41421,1.41421).
www.corewebprogramming.com
Example 2: Major Points
• Format of method definitions
• Methods that access local fields
• Calling methods
• Static methods
• Default values for fields
• public/private distinction
www.corewebprogramming.com
Defining Methods
(Functions Inside Classes)
• Basic method declaration:
public ReturnType methodName(type1 arg1,
type2 arg2, ...) {
...
return(something of ReturnType);
}
• Exception to this format: if you declare the
return type as void
– This special syntax that means “this method isn’t going to
return a value – it is just going to do some side effect like
printing on the screen”
– In such a case you do not need (in fact, are not
permitted), a return statement that includes a value to
be returned
www.corewebprogramming.com
Examples of Defining Methods
• Here are two examples:
– The first squares an integer
– The second returns the faster of two Ship objects, assuming that a
class called Ship has been defined that has a field named speed
// Example function call:
// int val = square(7);
public int square(int x) {
return(x*x);
}
// Example function call:
// Ship faster = fasterShip(someShip, someOtherShip);
public Ship fasterShip(Ship ship1, Ship ship2) {
if (ship1.speed > ship2.speed) {
return(ship1);
} else {
return(ship2);
}
}
www.corewebprogramming.com
Exception to the “Field Access
with Dots” Rule
• Normally access a field via: variableName.fieldName
but an exception is when a method of a class
wants to access fields of that same class
– In that case, omit the variable name and the dot
– For example, a move method within the Ship class might do:
public void move() {
x = x + speed * Math.cos(direction);
...
}
• Here, x, speed, and direction are all fields within the class
that the move method belongs to, so move can refer to the fields
directly
– As we’ll see later, you still can use the
variableName.fieldName approach, and Java invents a variable
called this that can be used for that purpose
www.corewebprogramming.com
Static Methods
• Static functions are like global functions in other
languages
• You can call a static method through the class
name
ClassName.functionName(arguments);
– For example, the Math class has a static method called cos that
expects a double precision number as an argument
• So you can call Math.cos(3.5) without ever having any object
(instance) of the Math class
www.corewebprogramming.com
Method Visibility
• public/private distinction
– A declaration of private means that “outside” methods
can’t call it -- only methods within the same class can
• Thus, for example, the main method of the Test2
class could not have done
double x = s1.degreesToRadians(2.2);
– Attempting to do so would have resulted in an
error at compile time
– Only say public for methods that you want to guarantee
your class will make available to users
– You are free to change or eliminate private methods
without telling users of your class about
www.corewebprogramming.com
Example 3: Constructors
class Ship3 {
public double x, y, speed, direction;
public String name;
public Ship3(double x, double y,
double speed, double direction,
String name) {
this.x = x; // "this" differentiates instance vars
this.y = y; // from local vars.
this.speed = speed;
this.direction = direction;
this.name = name;
}
private double degreesToRadians(double degrees) {
return(degrees * Math.PI / 180.0);
}
...
www.corewebprogramming.com
Constructors (Continued)
public void move() {
double angle = degreesToRadians(direction);
x = x + speed * Math.cos(angle);
y = y + speed * Math.sin(angle);
}
public void printLocation() {
System.out.println(name + " is at ("
+ x + "," + y + ").");
}
}
public class Test3 {
public static void main(String[] args) {
Ship3 s1 = new Ship3(0.0, 0.0, 1.0, 0.0, "Ship1");
Ship3 s2 = new Ship3(0.0, 0.0, 2.0, 135.0, "Ship2");
s1.move();
s2.move();
s1.printLocation();
s2.printLocation();
}
}
www.corewebprogramming.com
Constructor Example: Results
• Compiling and Running:
javac Test3.java
java Test3
• Output:
Ship1 is at (1,0).
Ship2 is at (-1.41421,1.41421).
www.corewebprogramming.com
Example 3: Major Points
• Format of constructor definitions
• The “this” reference
• Destructors (not!)
www.corewebprogramming.com
Constructors
• Constructors are special functions called when a
class is created with new
– Constructors are especially useful for supplying values of fields
– Constructors are declared through:
public ClassName(args) {
...
}
– Notice that the constructor name must exactly match the class name
– Constructors have no return type (not even void), unlike a regular
method
– Java automatically provides a zero-argument constructor if and only
if the class doesn’t define it’s own constructor
• That’s why you could say
Ship1 s1 = new Ship1();
in the first example, even though a constructor was never
defined
www.corewebprogramming.com
The this Variable
• The this object reference can be used inside any
non-static method to refer to the current object
• The common uses of the this reference are:
1. To pass a reference to the current object as a parameter to other
methods
someMethod(this);
2. To resolve name conflicts
• Using this permits the use of instance variables in methods
that have local variables with the same name
– Note that it is only necessary to say this.fieldName when you
have a local variable and a class field with the same name;
otherwise just use fieldName with no this
www.corewebprogramming.com
Destructors
This Page Intentionally Left Blank
www.corewebprogramming.com
Summary
• Class names should start with uppercase; method
names with lowercase
• Methods must define a return type or void if no
result is returned
• If a method accepts no arguments, the arg-list in
the method declaration is empty instead of void as
in C
• Static methods do not require an instance of the
class; static methods can be accessed through the
class name
• The this reference in a class refers to the current
object
• Class constructors do not declare a return type
• Java performs its own memory management and
requires no destructors

More Related Content

What's hot

Java OOP Programming language (Part 3) - Class and Object
Java OOP Programming language (Part 3) - Class and ObjectJava OOP Programming language (Part 3) - Class and Object
Java OOP Programming language (Part 3) - Class and ObjectOUM SAOKOSAL
 
03 Java Language And OOP Part III
03 Java Language And OOP Part III03 Java Language And OOP Part III
03 Java Language And OOP Part IIIHari Christian
 
04 Java Language And OOP Part IV
04 Java Language And OOP Part IV04 Java Language And OOP Part IV
04 Java Language And OOP Part IVHari Christian
 
C++ Programming Course
C++ Programming CourseC++ Programming Course
C++ Programming CourseDennis Chang
 
Classes in c++ (OOP Presentation)
Classes in c++ (OOP Presentation)Classes in c++ (OOP Presentation)
Classes in c++ (OOP Presentation)Majid Saeed
 
05 Java Language And OOP Part V
05 Java Language And OOP Part V05 Java Language And OOP Part V
05 Java Language And OOP Part VHari Christian
 
Object Oriented Programming with Java
Object Oriented Programming with JavaObject Oriented Programming with Java
Object Oriented Programming with JavaJussi Pohjolainen
 
Core java concepts
Core java  conceptsCore java  concepts
Core java conceptsRam132
 
Lect 1-class and object
Lect 1-class and objectLect 1-class and object
Lect 1-class and objectFajar Baskoro
 
Core java complete ppt(note)
Core java  complete  ppt(note)Core java  complete  ppt(note)
Core java complete ppt(note)arvind pandey
 

What's hot (20)

Core java complete notes - Contact at +91-814-614-5674
Core java complete notes - Contact at +91-814-614-5674Core java complete notes - Contact at +91-814-614-5674
Core java complete notes - Contact at +91-814-614-5674
 
Core java
Core javaCore java
Core java
 
Java basic understand OOP
Java basic understand OOPJava basic understand OOP
Java basic understand OOP
 
Java OOP Programming language (Part 3) - Class and Object
Java OOP Programming language (Part 3) - Class and ObjectJava OOP Programming language (Part 3) - Class and Object
Java OOP Programming language (Part 3) - Class and Object
 
Java basic
Java basicJava basic
Java basic
 
03 Java Language And OOP Part III
03 Java Language And OOP Part III03 Java Language And OOP Part III
03 Java Language And OOP Part III
 
Classes and objects
Classes and objectsClasses and objects
Classes and objects
 
Classes and objects
Classes and objectsClasses and objects
Classes and objects
 
04 Java Language And OOP Part IV
04 Java Language And OOP Part IV04 Java Language And OOP Part IV
04 Java Language And OOP Part IV
 
C++ Programming Course
C++ Programming CourseC++ Programming Course
C++ Programming Course
 
C++ classes
C++ classesC++ classes
C++ classes
 
Classes in c++ (OOP Presentation)
Classes in c++ (OOP Presentation)Classes in c++ (OOP Presentation)
Classes in c++ (OOP Presentation)
 
05 Java Language And OOP Part V
05 Java Language And OOP Part V05 Java Language And OOP Part V
05 Java Language And OOP Part V
 
Object Oriented Programming with Java
Object Oriented Programming with JavaObject Oriented Programming with Java
Object Oriented Programming with Java
 
Core java concepts
Core java  conceptsCore java  concepts
Core java concepts
 
Lect 1-class and object
Lect 1-class and objectLect 1-class and object
Lect 1-class and object
 
Java unit2
Java unit2Java unit2
Java unit2
 
Object and class
Object and classObject and class
Object and class
 
4 Classes & Objects
4 Classes & Objects4 Classes & Objects
4 Classes & Objects
 
Core java complete ppt(note)
Core java  complete  ppt(note)Core java  complete  ppt(note)
Core java complete ppt(note)
 

Viewers also liked

DJ KATSKI PRESSKIT
DJ KATSKI PRESSKITDJ KATSKI PRESSKIT
DJ KATSKI PRESSKITKAT YUFEREVA
 
c++ programming Unit 3 variables,data types
c++ programming Unit 3 variables,data typesc++ programming Unit 3 variables,data types
c++ programming Unit 3 variables,data typesAAKASH KUMAR
 
10.1016@j.surfin.2017.02.001
10.1016@j.surfin.2017.02.00110.1016@j.surfin.2017.02.001
10.1016@j.surfin.2017.02.001Dyson Bruno
 
C Programming basics
C Programming basicsC Programming basics
C Programming basicsJitin Pillai
 
Fundamentals of c programming
Fundamentals of c programmingFundamentals of c programming
Fundamentals of c programmingChitrank Dixit
 
Java Course 2: Basics
Java Course 2: BasicsJava Course 2: Basics
Java Course 2: BasicsAnton Keks
 
Programming with Java: the Basics
Programming with Java: the BasicsProgramming with Java: the Basics
Programming with Java: the BasicsJussi Pohjolainen
 
Basics of java 2
Basics of java 2Basics of java 2
Basics of java 2Raghu nath
 
Java Course 3: OOP
Java Course 3: OOPJava Course 3: OOP
Java Course 3: OOPAnton Keks
 
Introduction to basics of java
Introduction to basics of javaIntroduction to basics of java
Introduction to basics of javavinay arora
 
Java Programming for Designers
Java Programming for DesignersJava Programming for Designers
Java Programming for DesignersR. Sosa
 
Basics of file handling
Basics of file handlingBasics of file handling
Basics of file handlingpinkpreet_kaur
 

Viewers also liked (20)

Java Basics
Java BasicsJava Basics
Java Basics
 
Basics of Java
Basics of JavaBasics of Java
Basics of Java
 
02 basic java programming and operators
02 basic java programming and operators02 basic java programming and operators
02 basic java programming and operators
 
TS_LinkedIN_EN
TS_LinkedIN_ENTS_LinkedIN_EN
TS_LinkedIN_EN
 
DJ KATSKI PRESSKIT
DJ KATSKI PRESSKITDJ KATSKI PRESSKIT
DJ KATSKI PRESSKIT
 
c++ programming Unit 3 variables,data types
c++ programming Unit 3 variables,data typesc++ programming Unit 3 variables,data types
c++ programming Unit 3 variables,data types
 
10.1016@j.surfin.2017.02.001
10.1016@j.surfin.2017.02.00110.1016@j.surfin.2017.02.001
10.1016@j.surfin.2017.02.001
 
C Programming basics
C Programming basicsC Programming basics
C Programming basics
 
Fundamentals of c programming
Fundamentals of c programmingFundamentals of c programming
Fundamentals of c programming
 
Java Course 2: Basics
Java Course 2: BasicsJava Course 2: Basics
Java Course 2: Basics
 
Programming with Java: the Basics
Programming with Java: the BasicsProgramming with Java: the Basics
Programming with Java: the Basics
 
PALASH SL GUPTA
PALASH SL GUPTAPALASH SL GUPTA
PALASH SL GUPTA
 
Java basics notes
Java basics notesJava basics notes
Java basics notes
 
Basics of java 2
Basics of java 2Basics of java 2
Basics of java 2
 
Java Course 3: OOP
Java Course 3: OOPJava Course 3: OOP
Java Course 3: OOP
 
Introduction to basics of java
Introduction to basics of javaIntroduction to basics of java
Introduction to basics of java
 
Java Basics
Java BasicsJava Basics
Java Basics
 
Java Programming for Designers
Java Programming for DesignersJava Programming for Designers
Java Programming for Designers
 
Java basics
Java basicsJava basics
Java basics
 
Basics of file handling
Basics of file handlingBasics of file handling
Basics of file handling
 

Similar to 02 java basics

3java Advanced Oop
3java Advanced Oop3java Advanced Oop
3java Advanced OopAdil Jafri
 
Ccourse 140618093931-phpapp02
Ccourse 140618093931-phpapp02Ccourse 140618093931-phpapp02
Ccourse 140618093931-phpapp02Getachew Ganfur
 
Object oriented programming in java
Object oriented programming in javaObject oriented programming in java
Object oriented programming in javaElizabeth alexander
 
OOPS in java | Super and this Keyword | Memory Management in java | pacakages...
OOPS in java | Super and this Keyword | Memory Management in java | pacakages...OOPS in java | Super and this Keyword | Memory Management in java | pacakages...
OOPS in java | Super and this Keyword | Memory Management in java | pacakages...Sagar Verma
 
Java 102 intro to object-oriented programming in java
Java 102   intro to object-oriented programming in javaJava 102   intro to object-oriented programming in java
Java 102 intro to object-oriented programming in javaagorolabs
 
Pi j2.2 classes
Pi j2.2 classesPi j2.2 classes
Pi j2.2 classesmcollison
 
‫Object Oriented Programming_Lecture 3
‫Object Oriented Programming_Lecture 3‫Object Oriented Programming_Lecture 3
‫Object Oriented Programming_Lecture 3Mahmoud Alfarra
 
Pi j2.3 objects
Pi j2.3 objectsPi j2.3 objects
Pi j2.3 objectsmcollison
 
FFW Gabrovo PMG - PHP OOP Part 3
FFW Gabrovo PMG - PHP OOP Part 3FFW Gabrovo PMG - PHP OOP Part 3
FFW Gabrovo PMG - PHP OOP Part 3Toni Kolev
 
Classes, Objects and Method - Object Oriented Programming with Java
Classes, Objects and Method - Object Oriented Programming with JavaClasses, Objects and Method - Object Oriented Programming with Java
Classes, Objects and Method - Object Oriented Programming with JavaRadhika Talaviya
 
The Ring programming language version 1.7 book - Part 78 of 196
The Ring programming language version 1.7 book - Part 78 of 196The Ring programming language version 1.7 book - Part 78 of 196
The Ring programming language version 1.7 book - Part 78 of 196Mahmoud Samir Fayed
 
Lecture-10_PHP-OOP.pptx
Lecture-10_PHP-OOP.pptxLecture-10_PHP-OOP.pptx
Lecture-10_PHP-OOP.pptxShaownRoy1
 

Similar to 02 java basics (20)

2java Oop
2java Oop2java Oop
2java Oop
 
3java Advanced Oop
3java Advanced Oop3java Advanced Oop
3java Advanced Oop
 
Ccourse 140618093931-phpapp02
Ccourse 140618093931-phpapp02Ccourse 140618093931-phpapp02
Ccourse 140618093931-phpapp02
 
Object oriented programming in java
Object oriented programming in javaObject oriented programming in java
Object oriented programming in java
 
Lecture 5
Lecture 5Lecture 5
Lecture 5
 
OOPS in java | Super and this Keyword | Memory Management in java | pacakages...
OOPS in java | Super and this Keyword | Memory Management in java | pacakages...OOPS in java | Super and this Keyword | Memory Management in java | pacakages...
OOPS in java | Super and this Keyword | Memory Management in java | pacakages...
 
Sonu wiziq
Sonu wiziqSonu wiziq
Sonu wiziq
 
Java 102 intro to object-oriented programming in java
Java 102   intro to object-oriented programming in javaJava 102   intro to object-oriented programming in java
Java 102 intro to object-oriented programming in java
 
Pi j2.2 classes
Pi j2.2 classesPi j2.2 classes
Pi j2.2 classes
 
CS1Lesson13-IntroClasses.pptx
CS1Lesson13-IntroClasses.pptxCS1Lesson13-IntroClasses.pptx
CS1Lesson13-IntroClasses.pptx
 
‫Object Oriented Programming_Lecture 3
‫Object Oriented Programming_Lecture 3‫Object Oriented Programming_Lecture 3
‫Object Oriented Programming_Lecture 3
 
Pi j2.3 objects
Pi j2.3 objectsPi j2.3 objects
Pi j2.3 objects
 
Object & classes
Object & classes Object & classes
Object & classes
 
FFW Gabrovo PMG - PHP OOP Part 3
FFW Gabrovo PMG - PHP OOP Part 3FFW Gabrovo PMG - PHP OOP Part 3
FFW Gabrovo PMG - PHP OOP Part 3
 
Classes, Objects and Method - Object Oriented Programming with Java
Classes, Objects and Method - Object Oriented Programming with JavaClasses, Objects and Method - Object Oriented Programming with Java
Classes, Objects and Method - Object Oriented Programming with Java
 
Lecture 2 classes i
Lecture 2 classes iLecture 2 classes i
Lecture 2 classes i
 
Java
JavaJava
Java
 
The Ring programming language version 1.7 book - Part 78 of 196
The Ring programming language version 1.7 book - Part 78 of 196The Ring programming language version 1.7 book - Part 78 of 196
The Ring programming language version 1.7 book - Part 78 of 196
 
Core java concepts
Core java conceptsCore java concepts
Core java concepts
 
Lecture-10_PHP-OOP.pptx
Lecture-10_PHP-OOP.pptxLecture-10_PHP-OOP.pptx
Lecture-10_PHP-OOP.pptx
 

More from bsnl007

55994241 cissp-cram
55994241 cissp-cram55994241 cissp-cram
55994241 cissp-crambsnl007
 
4 operating system basics
4   operating system basics4   operating system basics
4 operating system basicsbsnl007
 
01slide (1)ffgfefge
01slide (1)ffgfefge01slide (1)ffgfefge
01slide (1)ffgfefgebsnl007
 

More from bsnl007 (8)

Lec5
Lec5Lec5
Lec5
 
Lec4
Lec4Lec4
Lec4
 
Lec3
Lec3Lec3
Lec3
 
Lec2
Lec2Lec2
Lec2
 
Lec1
Lec1Lec1
Lec1
 
55994241 cissp-cram
55994241 cissp-cram55994241 cissp-cram
55994241 cissp-cram
 
4 operating system basics
4   operating system basics4   operating system basics
4 operating system basics
 
01slide (1)ffgfefge
01slide (1)ffgfefge01slide (1)ffgfefge
01slide (1)ffgfefge
 

Recently uploaded

『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书rnrncn29
 
Company Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptxCompany Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptxMario
 
Unidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptxUnidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptxmibuzondetrabajo
 
ETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptxETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptxNIMMANAGANTI RAMAKRISHNA
 
SCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is prediSCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is predieusebiomeyer
 
Cybersecurity Threats and Cybersecurity Best Practices
Cybersecurity Threats and Cybersecurity Best PracticesCybersecurity Threats and Cybersecurity Best Practices
Cybersecurity Threats and Cybersecurity Best PracticesLumiverse Solutions Pvt Ltd
 
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书rnrncn29
 
TRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptxTRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptxAndrieCagasanAkio
 
IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119APNIC
 

Recently uploaded (9)

『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
 
Company Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptxCompany Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptx
 
Unidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptxUnidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptx
 
ETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptxETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptx
 
SCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is prediSCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is predi
 
Cybersecurity Threats and Cybersecurity Best Practices
Cybersecurity Threats and Cybersecurity Best PracticesCybersecurity Threats and Cybersecurity Best Practices
Cybersecurity Threats and Cybersecurity Best Practices
 
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
 
TRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptxTRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptx
 
IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119
 

02 java basics

  • 1. 1 © 2001-2002 Marty Hall, Larry Brown http://www.corewebprogramming.com Web core programming Basic Object-Oriented Programming in Java
  • 2. www.corewebprogramming.com Object-Oriented Nomenclature • “Class” means a category of things – A class name can be used in Java as the type of a field or local variable or as the return type of a function (method) • “Object” means a particular item that belongs to a class – Also called an “instance” • For example, consider the following line: String s1 = "Hello"; – Here, String is the class, s1 is an instance variable of class String, whose value is the String object "Hello"
  • 3. www.corewebprogramming.com Example 1: Instance Variables (“Fields” or “Data Members”) class Ship1 { public double x, y, speed, direction; public String name; } public class Test1 { public static void main(String[] args) { Ship1 s1 = new Ship1(); s1.x = 0.0; s1.y = 0.0; s1.speed = 1.0; s1.direction = 0.0; // East s1.name = "Ship1"; System.out.println(s1.name + " is initially at (" + s1.x + "," + s1.y + ")."); s1.x = s1.x + s1.speed * Math.cos(s1.direction * Math.PI / 180.0); s1.y = s1.y + s1.speed * Math.sin(s1.direction * Math.PI / 180.0); System.out.println(s1.name + " has moved to (" + s1.x + "," + s1.y + ")."); }
  • 4. www.corewebprogramming.com Instance Variables: Results • Compiling and Running: javac Test1.java java Test1 Output: Ship1 is initially at (1,0). Ship2 has moved to (-1.41421,1.41421).
  • 5. www.corewebprogramming.com Example 1: Major Points • Java naming convention • Format of class definitions • Creating classes with “new” • Accessing fields with “variableName.fieldName”
  • 6. www.corewebprogramming.com Java Naming Conventions • Leading uppercase letter in class name public class MyClass { ... } • Leading lowercase letter in field, local variable, and method (function) names – myField, myVar, myMethod
  • 7. www.corewebprogramming.com First Look at Java Classes • The general form of a simple class is modifier class Classname { modifier data-type field1; modifier data-type field2; ... modifier data-type fieldN; modifier Return-Type methodName1(parameters) { //statements } ... modifier Return-Type methodName2(parameters) { //statements } }
  • 8. www.corewebprogramming.com Objects and References • Once a class is defined, you can easily declare a variable (object reference) of the class Ship s1, s2; Point start; Color blue; • Object references are initially null – The null value is a distinct type in Java and should not be considered equal to zero – A primitive data type cannot be cast to an object (use wrapper classes) • The new operator is required to explicitly create the object that is referenced ClassName variableName = new ClassName();
  • 9. www.corewebprogramming.com Accessing Instance Variables • Use a dot between the variable name and the field name, as follows: variableName.fieldName • For example, Java has a built-in class called Point that has x and y fields Point p = new Point(2, 3); // Build a Point object int xSquared = p.x * p.x; // xSquared is 4 p.x = 7; • One major exception applies to the “access fields through varName.fieldName” rule – Methods can access fields of current object without varName – This will be explained when methods (functions) are discussed
  • 10. www.corewebprogramming.com Example 2: Methods class Ship2 { public double x=0.0, y=0.0, speed=1.0, direction=0.0; public String name = "UnnamedShip"; private double degreesToRadians(double degrees) { return(degrees * Math.PI / 180.0); } public void move() { double angle = degreesToRadians(direction); x = x + speed * Math.cos(angle); y = y + speed * Math.sin(angle); } public void printLocation() { System.out.println(name + " is at (" + x + "," + y + ")."); } }
  • 11. www.corewebprogramming.com Methods (Continued) public class Test2 { public static void main(String[] args) { Ship2 s1 = new Ship2(); s1.name = "Ship1"; Ship2 s2 = new Ship2(); s2.direction = 135.0; // Northwest s2.speed = 2.0; s2.name = "Ship2"; s1.move(); s2.move(); s1.printLocation(); s2.printLocation(); } } • Compiling and Running: javac Test2.java java Test2 • Output: Ship1 is at (1,0). Ship2 is at (-1.41421,1.41421).
  • 12. www.corewebprogramming.com Example 2: Major Points • Format of method definitions • Methods that access local fields • Calling methods • Static methods • Default values for fields • public/private distinction
  • 13. www.corewebprogramming.com Defining Methods (Functions Inside Classes) • Basic method declaration: public ReturnType methodName(type1 arg1, type2 arg2, ...) { ... return(something of ReturnType); } • Exception to this format: if you declare the return type as void – This special syntax that means “this method isn’t going to return a value – it is just going to do some side effect like printing on the screen” – In such a case you do not need (in fact, are not permitted), a return statement that includes a value to be returned
  • 14. www.corewebprogramming.com Examples of Defining Methods • Here are two examples: – The first squares an integer – The second returns the faster of two Ship objects, assuming that a class called Ship has been defined that has a field named speed // Example function call: // int val = square(7); public int square(int x) { return(x*x); } // Example function call: // Ship faster = fasterShip(someShip, someOtherShip); public Ship fasterShip(Ship ship1, Ship ship2) { if (ship1.speed > ship2.speed) { return(ship1); } else { return(ship2); } }
  • 15. www.corewebprogramming.com Exception to the “Field Access with Dots” Rule • Normally access a field via: variableName.fieldName but an exception is when a method of a class wants to access fields of that same class – In that case, omit the variable name and the dot – For example, a move method within the Ship class might do: public void move() { x = x + speed * Math.cos(direction); ... } • Here, x, speed, and direction are all fields within the class that the move method belongs to, so move can refer to the fields directly – As we’ll see later, you still can use the variableName.fieldName approach, and Java invents a variable called this that can be used for that purpose
  • 16. www.corewebprogramming.com Static Methods • Static functions are like global functions in other languages • You can call a static method through the class name ClassName.functionName(arguments); – For example, the Math class has a static method called cos that expects a double precision number as an argument • So you can call Math.cos(3.5) without ever having any object (instance) of the Math class
  • 17. www.corewebprogramming.com Method Visibility • public/private distinction – A declaration of private means that “outside” methods can’t call it -- only methods within the same class can • Thus, for example, the main method of the Test2 class could not have done double x = s1.degreesToRadians(2.2); – Attempting to do so would have resulted in an error at compile time – Only say public for methods that you want to guarantee your class will make available to users – You are free to change or eliminate private methods without telling users of your class about
  • 18. www.corewebprogramming.com Example 3: Constructors class Ship3 { public double x, y, speed, direction; public String name; public Ship3(double x, double y, double speed, double direction, String name) { this.x = x; // "this" differentiates instance vars this.y = y; // from local vars. this.speed = speed; this.direction = direction; this.name = name; } private double degreesToRadians(double degrees) { return(degrees * Math.PI / 180.0); } ...
  • 19. www.corewebprogramming.com Constructors (Continued) public void move() { double angle = degreesToRadians(direction); x = x + speed * Math.cos(angle); y = y + speed * Math.sin(angle); } public void printLocation() { System.out.println(name + " is at (" + x + "," + y + ")."); } } public class Test3 { public static void main(String[] args) { Ship3 s1 = new Ship3(0.0, 0.0, 1.0, 0.0, "Ship1"); Ship3 s2 = new Ship3(0.0, 0.0, 2.0, 135.0, "Ship2"); s1.move(); s2.move(); s1.printLocation(); s2.printLocation(); } }
  • 20. www.corewebprogramming.com Constructor Example: Results • Compiling and Running: javac Test3.java java Test3 • Output: Ship1 is at (1,0). Ship2 is at (-1.41421,1.41421).
  • 21. www.corewebprogramming.com Example 3: Major Points • Format of constructor definitions • The “this” reference • Destructors (not!)
  • 22. www.corewebprogramming.com Constructors • Constructors are special functions called when a class is created with new – Constructors are especially useful for supplying values of fields – Constructors are declared through: public ClassName(args) { ... } – Notice that the constructor name must exactly match the class name – Constructors have no return type (not even void), unlike a regular method – Java automatically provides a zero-argument constructor if and only if the class doesn’t define it’s own constructor • That’s why you could say Ship1 s1 = new Ship1(); in the first example, even though a constructor was never defined
  • 23. www.corewebprogramming.com The this Variable • The this object reference can be used inside any non-static method to refer to the current object • The common uses of the this reference are: 1. To pass a reference to the current object as a parameter to other methods someMethod(this); 2. To resolve name conflicts • Using this permits the use of instance variables in methods that have local variables with the same name – Note that it is only necessary to say this.fieldName when you have a local variable and a class field with the same name; otherwise just use fieldName with no this
  • 25. www.corewebprogramming.com Summary • Class names should start with uppercase; method names with lowercase • Methods must define a return type or void if no result is returned • If a method accepts no arguments, the arg-list in the method declaration is empty instead of void as in C • Static methods do not require an instance of the class; static methods can be accessed through the class name • The this reference in a class refers to the current object • Class constructors do not declare a return type • Java performs its own memory management and requires no destructors