SlideShare a Scribd company logo
UMBC CMSC 331 Java
JAVA BASICSJAVA BASICS
UMBC CMSC 331 Java
Comments are almost like C++
The javadoc program generates HTML API
documentation from the “javadoc” style
comments in your code.
2
/* This kind of comment can span multiple lines */
// This kind is to the end of the line
/**
* This kind of comment is a special
* ‘javadoc’ style comment
*/
UMBC CMSC 331 Java
An example of a class
3
class Person {
String name;
int age;
void birthday ( ) {
age++;
System.out.println (name +
' is now ' + age);
}
}
Variable
Method
UMBC CMSC 331 Java
Scoping
• As in C/C++, scope is determined by the placement of curly braces {}.
• A variable defined within a scope is available only to the end of that
scope.
4
{ int x = 12;
/* only x available */
{ int q = 96;
/* both x and q available */
}
/* only x available */
/* q “out of scope” */
}
{ int x = 12;
{ int x = 96; /* illegal */
}
}
This is ok in C/C++ but not in Java.
UMBC CMSC 331 Java
An array is an object
• Person mary = new Person ( );
• int myArray[ ] = new int[5];
• int myArray[ ] = {1, 4, 9, 16, 25};
• String languages [ ] = {"Prolog",
"Java"};
• Since arrays are objects they are allocated dynamically
• Arrays, like all objects, are subject to garbage collection
when no more references remain
– so fewer memory leaks
– Java doesn’t have pointers!
5
UMBC CMSC 331 Java
Scope of Objects
• Java objects don’t have the same lifetimes
as primitives.
• When you create a Java object using new,
it hangs around past the end of the scope.
• Here, the scope of name s is delimited by
the {}s but the String object hangs around
until GC’d
{
String s = new String("a
string");
6
UMBC CMSC 331 Java
Methods, arguments and return values
• Java methods are like C/C++ functions. General case:
returnType methodName ( arg1, arg2, … argN) {
methodBody
}
The return keyword exits a method optionally with a value
int storage(String s) {return s.length() * 2;}
boolean flag() { return true; }
float naturalLogBase() { return 2.718f; }
void nothing() { return; }
void nothing2() {}
7
UMBC CMSC 331 Java
The static keyword
• Java methods and variables can be declared
static
• These exist independent of any object
• This means that a Class’s
–static methods can be called even if no objects
of that class have been created and
–static data is “shared” by all instances (i.e., one
rvalue per class instead of one per instance
8
class StaticTest {static int i = 47;}
StaticTest st1 = new StaticTest();
StaticTest st2 = new StaticTest();
// st1.i == st2.I == 47
StaticTest.i++; // or st1.I++ or st2.I++
// st1.i == st2.I == 48
UMBC CMSC 331 Java
Array Operations
• Subscripts always start at 0 as in C
• Subscript checking is done automatically
• Certain operations are defined on arrays of
objects, as for other classes
– e.g. myArray.length == 5
9
UMBC CMSC 331 Java
ExampleExample
ProgramsPrograms
Echo.java
C:UMBC331java>type echo.java
// This is the Echo example from the Sun tutorial
class echo {
public static void main(String args[]) {
for (int i=0; i < args.length; i++) {
System.out.println( args[i] );
}
}
}
C:UMBC331java>javac echo.java
C:UMBC331java>java echo this is pretty silly
this
is
pretty
silly
C:UMBC331java>
UMBC CMSC 331 Java
Factorial Example
/**
* This program computes the factorial of a number
*/
public class Factorial { // Define a class
public static void main(String[] args) { // The program starts here
int input = Integer.parseInt(args[0]); // Get the user's input
double result = factorial(input); // Compute the factorial
System.out.println(result); // Print out the result
} // The main() method ends here
public static double factorial(int x) { // This method computes x!
if (x < 0) // Check for bad input
return 0.0; // if bad, return 0
double fact = 1.0; // Begin with an initial value
while(x > 1) { // Loop until x equals 1
fact = fact * x; // multiply by x each time
x = x - 1; // and then decrement x
} // Jump back to the star of loop
return fact; // Return the result
} // factorial() ends here
} // The class ends here 12
From Java in a Nutshell
UMBC CMSC 331 Java
JAVA Classes
• The class is the fundamental concept in JAVA (and other
OOPLs)
• A class describes some data object(s), and the operations
(or methods) that can be applied to those objects
• Every object and method in Java belongs to a class
• Classes have data (fields) and code (methods) and classes
(member classes or inner classes)
• Static methods and fields belong to the class itself
• Others belong to instances
13
UMBC CMSC 331 Java
Example
public class Circle {
// A class field
public static final double PI= 3.14159; // A useful constant
// A class method: just compute a value based on the arguments
public static double radiansToDegrees(double rads) {
return rads * 180 / PI;
}
// An instance field
public double r; // The radius of the circle
// Two methods which operate on the instance fields of an object
public double area() { // Compute the area of the
circle
return PI * r * r;
}
public double circumference() { // Compute the circumference of
the circle
return 2 * PI * r;
}
}
14
UMBC CMSC 331 Java
Constructors
• Classes should define one or more methods to create or
construct instances of the class
• Their name is the same as the class name
– note deviation from convention that methods begin with lower
case
• Constructors are differentiated by the number and types of
their arguments
– An example of overloading
• If you don’t define a constructor, a default one will be
created.
• Constructors automatically invoke the zero argument
constructor of their superclass when they begin (note that
this yields a recursive process!)
15
UMBC CMSC 331 Java
Constructor example
public class Circle {
public static final double PI = 3.14159; // A constant
public double r; // instance field holds circle’s radius
// The constructor method: initialize the radius field
public Circle(double r) { this.r = r; }
// Constructor to use if no arguments
public Circle() { r = 1.0; }
// better: public Circle() { this(1.0); }
// The instance methods: compute values based on radius
public double circumference() { return 2 * PI * r; }
public double area() { return PI * r*r; }
}
16
this.r refers to the r
field of the class
This() refers to a
constructor for the class
UMBC CMSC 331 Java
Extending a class
• Class hierarchies reflect subclass-superclass relations among
classes.
• One arranges classes in hierarchies:
– A class inherits instance variables and instance methods from all of its
superclasses. Tree -> BinaryTree -> BST
– You can specify only ONE superclass for any class.
• When a subclass-superclass chain contains multiple instance
methods with the same signature (name, arity, and argument
types), the one closest to the target instance in the subclass-
superclass chain is the one executed.
– All others are shadowed/overridden.
• Something like multiple inheritance can be done via interfaces
(more on this later)
• What’s the superclass of a class defined without an extends
clause?
17
UMBC CMSC 331 Java
Extending a class
public class PlaneCircle extends Circle {
// We automatically inherit the fields and methods of Circle,
// so we only have to put the new stuff here.
// New instance fields that store the center point of the circle
public double cx, cy;
// A new constructor method to initialize the new fields
// It uses a special syntax to invoke the Circle() constructor
public PlaneCircle(double r, double x, double y) {
super(r); // Invoke the constructor of the superclass, Circle()
this.cx = x; // Initialize the instance field cx
this.cy = y; // Initialize the instance field cy
}
// The area() and circumference() methods are inherited from Circle
// A new instance method that checks whether a point is inside the circle
// Note that it uses the inherited instance field r
public boolean isInside(double x, double y) {
double dx = x - cx, dy = y - cy; // Distance from center
double distance = Math.sqrt(dx*dx + dy*dy); // Pythagorean theorem
return (distance < r); // Returns true or false
}
}
18
UMBC CMSC 331 Java
Overloading, overwriting, and shadowing
• Overloading occurs when Java can distinguish two procedures with the
same name by examining the number or types of their parameters.
• Shadowing or overriding occurs when two procedures with the same
signature (name, the same number of parameters, and the same
parameter types) are defined in different classes, one of which is a
superclass of the other.
19
UMBC CMSC 331 Java
On designing class hierarchies
• Programs should obey the explicit-representation principle, with classes
included to reflect natural categories.
• Programs should obey the no-duplication principle, with instance
methods situated among class definitions to facilitate sharing.
• Programs should obey the look-it-up principle, with class definitions
including instance variables for stable, frequently requested information.
• Programs should obey the need-to-know principle, with public interfaces
designed to restrict instance-variable and instance-method access, thus
facilitating the improvement and maintenance of nonpublic program
elements.
• If you find yourself using the phrase an X is a Y when describing the
relation between two classes, then the X class is a subclass of the Y class.
• If you find yourself using X has a Y when describing the relation between
two classes, then instances of the Y class appear as parts of instances of
the X class.
20
UMBC CMSC 331 Java
Data hiding and encapsulation
• Data-hiding or encapsulation is an
important part of the OO paradigm.
• Classes should carefully control access to
their data and methods in order to
–Hide the irrelevant implementation-level details
so they can be easily changed
–Protect the class against accidental or malicious
damage.
–Keep the externally visible class simple and easy
to document
• Java has a simple access control mechanism
to help with encapsulation 21
UMBC CMSC 331 Java
Example
encapsulation
package shapes; // Specify a package for the class
public class Circle { // The class is still public
public static final double PI = 3.14159;
protected double r; // Radius is hidden, but visible to subclasses
// A method to enforce the restriction on the radius
// This is an implementation detail that may be of interest to subclasses
protected checkRadius(double radius) {
if (radius < 0.0)
throw new IllegalArgumentException("radius may not be negative.");
}
// The constructor method
public Circle(double r) {checkRadius(r); this.r = r; }
// Public data accessor methods
public double getRadius() { return r; };
public void setRadius(double r) { checkRadius(r); this.r = r;}
// Methods to operate on the instance field
public double area() { return PI * r * r; }
public double circumference() { return 2 * PI * r; }
}
22
UMBC CMSC 331 Java
Access control
• Access to packages
– Java offers no control mechanisms for
packages.
– If you can find and read the package you can
access it
• Access to classes
– All top level classes in package P are accessible
anywhere in P
– All public top-level classes in P are accessible
anywhere
• Access to class members (in class C in
package P) 23
UMBC CMSC 331 Java
24
UMBC CMSC 331 Java
Getters and setters
• A getter is a method that extracts information from an instance.
– One benefit: you can include additional computation in a getter.
• A setter is a method that inserts information into an instance (also
known as mutators).
– A setter method can check the validity of the new value (e.g., between 1
and 7) or trigger a side effect (e.g., update a display)
• Getters and setters can be used even without underlying matching
variables
• Considered good OO practice
• Essential to javabeans
• Convention: for variable fooBar of type fbtype, define
– getFooBar()
– setFooBar(fbtype x)
25
UMBC CMSC 331 Java
Example
getters and setters
package shapes; // Specify a package for the class
public class Circle { // The class is still public
// This is a generally useful constant, so we keep it public
public static final double PI = 3.14159;
protected double r; // Radius is hidden, but visible to subclasses
// A method to enforce the restriction on the radius
// This is an implementation detail that may be of interest to subclasses
protected checkRadius(double radius) {
if (radius < 0.0)
throw new IllegalArgumentException("radius may not be negative.");
}
// The constructor method
public Circle(double r) { checkRadius(r); this.r = r;}
// Public data accessor methods
public double getRadius() { return r; };
public void setRadius(double r) { checkRadius(r); this.r = r;}
// Methods to operate on the instance field
public double area() { return PI * r * r; }
public double circumference() { return 2 * PI * r; }
}
26
UMBC CMSC 331 Java
Abstract classes and methods
• Abstract vs. concrete classes
• Abstract classes can not be instantiated
public abstract class shape { }
• An abstract method is a method w/o a body
public abstract double area();
• (Only) Abstract classes can have abstract
methods
• In fact, any class with an abstract method is
automatically an abstract class 27
UMBC CMSC 331 Java
Example
abstract class
public abstract class Shape {
public abstract double area(); // Abstract methods: note
public abstract double circumference();// semicolon instead of body.
}
class Circle extends Shape {
public static final double PI = 3.14159265358979323846;
protected double r; // Instance data
public Circle(double r) { this.r = r; } // Constructor
public double getRadius() { return r; } // Accessor
public double area() { return PI*r*r; } // Implementations of
public double circumference() { return 2*PI*r; } // abstract methods.
}
class Rectangle extends Shape {
protected double w, h; // Instance data
public Rectangle(double w, double h) { // Constructor
this.w = w; this.h = h;
}
public double getWidth() { return w; } // Accessor method
public double getHeight() { return h; } // Another accessor
public double area() { return w*h; } // Implementations of
public double circumference() { return 2*(w + h); } // abstract methods.
}
28
UMBC CMSC 331 Java
Syntax Notes
• No global variables
– class variables and methods may be applied to any
instance of an object
– methods may have local (private?) variables
• No pointers
– but complex data objects are “referenced”
• Other parts of Java are borrowed from PL/I,
Modula, and other languages
29

More Related Content

What's hot (20)

PPT
Core java concepts
javeed_mhd
 
PPTX
Classes, objects in JAVA
Abhilash Nair
 
PPTX
Core java concepts
laratechnologies
 
PPT
02 java basics
bsnl007
 
PPT
Core java concepts
Ram132
 
PPTX
Class introduction in java
yugandhar vadlamudi
 
DOCX
JAVA Notes - All major concepts covered with examples
Sunil Kumar Gunasekaran
 
PPTX
Pi j3.2 polymorphism
mcollison
 
PPTX
Core java complete ppt(note)
arvind pandey
 
PPS
Introduction to class in java
kamal kotecha
 
PDF
Java OOP Programming language (Part 5) - Inheritance
OUM SAOKOSAL
 
PDF
Method overloading, recursion, passing and returning objects from method, new...
JAINAM KAPADIYA
 
PPT
Best Core Java Training In Bangalore
rajkamaltibacademy
 
PPT
Object and Classes in Java
backdoor
 
PPTX
Overloading and overriding in vb.net
suraj pandey
 
PPT
Java inheritance
GaneshKumarKanthiah
 
PPT
Core Java Concepts
mdfkhan625
 
PDF
Chapter 02: Classes Objects and Methods Java by Tushar B Kute
Tushar B Kute
 
PPTX
Ppt on this and super keyword
tanu_jaswal
 
Core java concepts
javeed_mhd
 
Classes, objects in JAVA
Abhilash Nair
 
Core java concepts
laratechnologies
 
02 java basics
bsnl007
 
Core java concepts
Ram132
 
Class introduction in java
yugandhar vadlamudi
 
JAVA Notes - All major concepts covered with examples
Sunil Kumar Gunasekaran
 
Pi j3.2 polymorphism
mcollison
 
Core java complete ppt(note)
arvind pandey
 
Introduction to class in java
kamal kotecha
 
Java OOP Programming language (Part 5) - Inheritance
OUM SAOKOSAL
 
Method overloading, recursion, passing and returning objects from method, new...
JAINAM KAPADIYA
 
Best Core Java Training In Bangalore
rajkamaltibacademy
 
Object and Classes in Java
backdoor
 
Overloading and overriding in vb.net
suraj pandey
 
Java inheritance
GaneshKumarKanthiah
 
Core Java Concepts
mdfkhan625
 
Chapter 02: Classes Objects and Methods Java by Tushar B Kute
Tushar B Kute
 
Ppt on this and super keyword
tanu_jaswal
 

Viewers also liked (20)

PPTX
Basics of java 2
Raghu nath
 
PPT
PALASH SL GUPTA
PALASH GUPTA
 
PPT
Java Basics
Brandon Black
 
PDF
Java Course 2: Basics
Anton Keks
 
PDF
Introduction to basics of java
vinay arora
 
PPT
Programming with Java: the Basics
Jussi Pohjolainen
 
PDF
Java Course 3: OOP
Anton Keks
 
PDF
Java basics notes
poonguzhali1826
 
PPT
Java basics
Jitender Jain
 
PPT
Java Programming for Designers
R. Sosa
 
PPT
2. Basics of Java
Nilesh Dalvi
 
PPTX
Basics of file handling
pinkpreet_kaur
 
PPTX
Java basics
Hoang Nguyen
 
PPT
Core java Basics
RAMU KOLLI
 
PPT
Java Basics
sunilsahu07
 
PPT
Core Java Basics
mhtspvtltd
 
PPTX
OOPs in Java
Ranjith Sekar
 
PPTX
Java basics part 1
Kevin Rowan
 
PPTX
Java Basics
Rkrishna Mishra
 
PPTX
Ppt on java basics
Mavoori Soshmitha
 
Basics of java 2
Raghu nath
 
PALASH SL GUPTA
PALASH GUPTA
 
Java Basics
Brandon Black
 
Java Course 2: Basics
Anton Keks
 
Introduction to basics of java
vinay arora
 
Programming with Java: the Basics
Jussi Pohjolainen
 
Java Course 3: OOP
Anton Keks
 
Java basics notes
poonguzhali1826
 
Java basics
Jitender Jain
 
Java Programming for Designers
R. Sosa
 
2. Basics of Java
Nilesh Dalvi
 
Basics of file handling
pinkpreet_kaur
 
Java basics
Hoang Nguyen
 
Core java Basics
RAMU KOLLI
 
Java Basics
sunilsahu07
 
Core Java Basics
mhtspvtltd
 
OOPs in Java
Ranjith Sekar
 
Java basics part 1
Kevin Rowan
 
Java Basics
Rkrishna Mishra
 
Ppt on java basics
Mavoori Soshmitha
 
Ad

Similar to Java Basics (20)

PPT
java02.pptsatrrhfhf https://www.slideshare.net/slideshow/java-notespdf-259708...
atharvtayde5632
 
PPTX
CORE JAVA PPT FOR ENGINEERS BBBBBBBBBBBBBBBBBBB
NagarathnaRajur2
 
PPT
Core java
Rajkattamuri
 
PPT
Java Concepts
AbdulImrankhan7
 
PPT
Core Java
Khasim Saheb
 
PPT
Corejava Training in Bangalore Tutorial
rajkamaltibacademy
 
PPT
Core java concepts
kishorethoutam
 
PPTX
OOP-JAVA-ONLYUNIT-2-PPT_removed (1).pptx
deepayaganti1
 
PPTX
Java assignment help
Jacob William
 
PPT
Core java concepts
Chikugehlot
 
PPT
Inheritance
abhay singh
 
PPT
Jacarashed-1746968053-300050282-Java.ppt
DilipDas70
 
PDF
3java Advanced Oop
Adil Jafri
 
PPTX
Inheritance & interface ppt Inheritance
narikamalliy
 
ODP
Ppt of c++ vs c#
shubhra chauhan
 
PPT
Java PRESENTATION(PACKAGES,CLASSES,VARIABLES,FLOW CONTROL,EXCEPTION)
quantumiq448
 
PPT
Unit 1 Part - 3 constructor Overloading Static.ppt
DeepVala5
 
PPT
02-OOP with Java.ppt
EmanAsem4
 
PPT
025466482929 -OOP with Java Development Kit.ppt
DakshinaPahan
 
PPT
Java oops PPT
kishu0005
 
java02.pptsatrrhfhf https://www.slideshare.net/slideshow/java-notespdf-259708...
atharvtayde5632
 
CORE JAVA PPT FOR ENGINEERS BBBBBBBBBBBBBBBBBBB
NagarathnaRajur2
 
Core java
Rajkattamuri
 
Java Concepts
AbdulImrankhan7
 
Core Java
Khasim Saheb
 
Corejava Training in Bangalore Tutorial
rajkamaltibacademy
 
Core java concepts
kishorethoutam
 
OOP-JAVA-ONLYUNIT-2-PPT_removed (1).pptx
deepayaganti1
 
Java assignment help
Jacob William
 
Core java concepts
Chikugehlot
 
Inheritance
abhay singh
 
Jacarashed-1746968053-300050282-Java.ppt
DilipDas70
 
3java Advanced Oop
Adil Jafri
 
Inheritance & interface ppt Inheritance
narikamalliy
 
Ppt of c++ vs c#
shubhra chauhan
 
Java PRESENTATION(PACKAGES,CLASSES,VARIABLES,FLOW CONTROL,EXCEPTION)
quantumiq448
 
Unit 1 Part - 3 constructor Overloading Static.ppt
DeepVala5
 
02-OOP with Java.ppt
EmanAsem4
 
025466482929 -OOP with Java Development Kit.ppt
DakshinaPahan
 
Java oops PPT
kishu0005
 
Ad

More from Rajkattamuri (20)

PPTX
Github plugin setup in anypointstudio
Rajkattamuri
 
PPTX
For each component in mule
Rajkattamuri
 
PPTX
Filter expression in mule
Rajkattamuri
 
PPTX
File component in mule
Rajkattamuri
 
PPTX
Database component in mule
Rajkattamuri
 
PPTX
Choice component in mule
Rajkattamuri
 
PPT
WebServices
Rajkattamuri
 
PPTX
Java Basics in Mule
Rajkattamuri
 
PPTX
WebServices Basic Overview
Rajkattamuri
 
PPTX
Java For Begineers
Rajkattamuri
 
PPT
WebServices Basics
Rajkattamuri
 
PPT
WebServices SOAP WSDL and UDDI
Rajkattamuri
 
PPTX
Web services soap
Rajkattamuri
 
PPTX
Web services wsdl
Rajkattamuri
 
PPTX
Web services uddi
Rajkattamuri
 
PPT
Maven
Rajkattamuri
 
PPTX
Mule esb dataweave
Rajkattamuri
 
PPTX
Mule with drools
Rajkattamuri
 
PPTX
Mule with quartz
Rajkattamuri
 
PPTX
Mule with rabbitmq
Rajkattamuri
 
Github plugin setup in anypointstudio
Rajkattamuri
 
For each component in mule
Rajkattamuri
 
Filter expression in mule
Rajkattamuri
 
File component in mule
Rajkattamuri
 
Database component in mule
Rajkattamuri
 
Choice component in mule
Rajkattamuri
 
WebServices
Rajkattamuri
 
Java Basics in Mule
Rajkattamuri
 
WebServices Basic Overview
Rajkattamuri
 
Java For Begineers
Rajkattamuri
 
WebServices Basics
Rajkattamuri
 
WebServices SOAP WSDL and UDDI
Rajkattamuri
 
Web services soap
Rajkattamuri
 
Web services wsdl
Rajkattamuri
 
Web services uddi
Rajkattamuri
 
Mule esb dataweave
Rajkattamuri
 
Mule with drools
Rajkattamuri
 
Mule with quartz
Rajkattamuri
 
Mule with rabbitmq
Rajkattamuri
 

Recently uploaded (20)

PDF
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PPTX
Digital Circuits, important subject in CS
contactparinay1
 
PDF
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
PDF
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
PDF
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
Edge AI and Vision Alliance
 
PDF
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PDF
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
PDF
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
PDF
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
Edge AI and Vision Alliance
 
PDF
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
PDF
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
PDF
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PDF
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
PPTX
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
PDF
Future-Proof or Fall Behind? 10 Tech Trends You Can’t Afford to Ignore in 2025
DIGITALCONFEX
 
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
Digital Circuits, important subject in CS
contactparinay1
 
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
Edge AI and Vision Alliance
 
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
Edge AI and Vision Alliance
 
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
Future-Proof or Fall Behind? 10 Tech Trends You Can’t Afford to Ignore in 2025
DIGITALCONFEX
 

Java Basics

  • 1. UMBC CMSC 331 Java JAVA BASICSJAVA BASICS
  • 2. UMBC CMSC 331 Java Comments are almost like C++ The javadoc program generates HTML API documentation from the “javadoc” style comments in your code. 2 /* This kind of comment can span multiple lines */ // This kind is to the end of the line /** * This kind of comment is a special * ‘javadoc’ style comment */
  • 3. UMBC CMSC 331 Java An example of a class 3 class Person { String name; int age; void birthday ( ) { age++; System.out.println (name + ' is now ' + age); } } Variable Method
  • 4. UMBC CMSC 331 Java Scoping • As in C/C++, scope is determined by the placement of curly braces {}. • A variable defined within a scope is available only to the end of that scope. 4 { int x = 12; /* only x available */ { int q = 96; /* both x and q available */ } /* only x available */ /* q “out of scope” */ } { int x = 12; { int x = 96; /* illegal */ } } This is ok in C/C++ but not in Java.
  • 5. UMBC CMSC 331 Java An array is an object • Person mary = new Person ( ); • int myArray[ ] = new int[5]; • int myArray[ ] = {1, 4, 9, 16, 25}; • String languages [ ] = {"Prolog", "Java"}; • Since arrays are objects they are allocated dynamically • Arrays, like all objects, are subject to garbage collection when no more references remain – so fewer memory leaks – Java doesn’t have pointers! 5
  • 6. UMBC CMSC 331 Java Scope of Objects • Java objects don’t have the same lifetimes as primitives. • When you create a Java object using new, it hangs around past the end of the scope. • Here, the scope of name s is delimited by the {}s but the String object hangs around until GC’d { String s = new String("a string"); 6
  • 7. UMBC CMSC 331 Java Methods, arguments and return values • Java methods are like C/C++ functions. General case: returnType methodName ( arg1, arg2, … argN) { methodBody } The return keyword exits a method optionally with a value int storage(String s) {return s.length() * 2;} boolean flag() { return true; } float naturalLogBase() { return 2.718f; } void nothing() { return; } void nothing2() {} 7
  • 8. UMBC CMSC 331 Java The static keyword • Java methods and variables can be declared static • These exist independent of any object • This means that a Class’s –static methods can be called even if no objects of that class have been created and –static data is “shared” by all instances (i.e., one rvalue per class instead of one per instance 8 class StaticTest {static int i = 47;} StaticTest st1 = new StaticTest(); StaticTest st2 = new StaticTest(); // st1.i == st2.I == 47 StaticTest.i++; // or st1.I++ or st2.I++ // st1.i == st2.I == 48
  • 9. UMBC CMSC 331 Java Array Operations • Subscripts always start at 0 as in C • Subscript checking is done automatically • Certain operations are defined on arrays of objects, as for other classes – e.g. myArray.length == 5 9
  • 10. UMBC CMSC 331 Java ExampleExample ProgramsPrograms
  • 11. Echo.java C:UMBC331java>type echo.java // This is the Echo example from the Sun tutorial class echo { public static void main(String args[]) { for (int i=0; i < args.length; i++) { System.out.println( args[i] ); } } } C:UMBC331java>javac echo.java C:UMBC331java>java echo this is pretty silly this is pretty silly C:UMBC331java>
  • 12. UMBC CMSC 331 Java Factorial Example /** * This program computes the factorial of a number */ public class Factorial { // Define a class public static void main(String[] args) { // The program starts here int input = Integer.parseInt(args[0]); // Get the user's input double result = factorial(input); // Compute the factorial System.out.println(result); // Print out the result } // The main() method ends here public static double factorial(int x) { // This method computes x! if (x < 0) // Check for bad input return 0.0; // if bad, return 0 double fact = 1.0; // Begin with an initial value while(x > 1) { // Loop until x equals 1 fact = fact * x; // multiply by x each time x = x - 1; // and then decrement x } // Jump back to the star of loop return fact; // Return the result } // factorial() ends here } // The class ends here 12 From Java in a Nutshell
  • 13. UMBC CMSC 331 Java JAVA Classes • The class is the fundamental concept in JAVA (and other OOPLs) • A class describes some data object(s), and the operations (or methods) that can be applied to those objects • Every object and method in Java belongs to a class • Classes have data (fields) and code (methods) and classes (member classes or inner classes) • Static methods and fields belong to the class itself • Others belong to instances 13
  • 14. UMBC CMSC 331 Java Example public class Circle { // A class field public static final double PI= 3.14159; // A useful constant // A class method: just compute a value based on the arguments public static double radiansToDegrees(double rads) { return rads * 180 / PI; } // An instance field public double r; // The radius of the circle // Two methods which operate on the instance fields of an object public double area() { // Compute the area of the circle return PI * r * r; } public double circumference() { // Compute the circumference of the circle return 2 * PI * r; } } 14
  • 15. UMBC CMSC 331 Java Constructors • Classes should define one or more methods to create or construct instances of the class • Their name is the same as the class name – note deviation from convention that methods begin with lower case • Constructors are differentiated by the number and types of their arguments – An example of overloading • If you don’t define a constructor, a default one will be created. • Constructors automatically invoke the zero argument constructor of their superclass when they begin (note that this yields a recursive process!) 15
  • 16. UMBC CMSC 331 Java Constructor example public class Circle { public static final double PI = 3.14159; // A constant public double r; // instance field holds circle’s radius // The constructor method: initialize the radius field public Circle(double r) { this.r = r; } // Constructor to use if no arguments public Circle() { r = 1.0; } // better: public Circle() { this(1.0); } // The instance methods: compute values based on radius public double circumference() { return 2 * PI * r; } public double area() { return PI * r*r; } } 16 this.r refers to the r field of the class This() refers to a constructor for the class
  • 17. UMBC CMSC 331 Java Extending a class • Class hierarchies reflect subclass-superclass relations among classes. • One arranges classes in hierarchies: – A class inherits instance variables and instance methods from all of its superclasses. Tree -> BinaryTree -> BST – You can specify only ONE superclass for any class. • When a subclass-superclass chain contains multiple instance methods with the same signature (name, arity, and argument types), the one closest to the target instance in the subclass- superclass chain is the one executed. – All others are shadowed/overridden. • Something like multiple inheritance can be done via interfaces (more on this later) • What’s the superclass of a class defined without an extends clause? 17
  • 18. UMBC CMSC 331 Java Extending a class public class PlaneCircle extends Circle { // We automatically inherit the fields and methods of Circle, // so we only have to put the new stuff here. // New instance fields that store the center point of the circle public double cx, cy; // A new constructor method to initialize the new fields // It uses a special syntax to invoke the Circle() constructor public PlaneCircle(double r, double x, double y) { super(r); // Invoke the constructor of the superclass, Circle() this.cx = x; // Initialize the instance field cx this.cy = y; // Initialize the instance field cy } // The area() and circumference() methods are inherited from Circle // A new instance method that checks whether a point is inside the circle // Note that it uses the inherited instance field r public boolean isInside(double x, double y) { double dx = x - cx, dy = y - cy; // Distance from center double distance = Math.sqrt(dx*dx + dy*dy); // Pythagorean theorem return (distance < r); // Returns true or false } } 18
  • 19. UMBC CMSC 331 Java Overloading, overwriting, and shadowing • Overloading occurs when Java can distinguish two procedures with the same name by examining the number or types of their parameters. • Shadowing or overriding occurs when two procedures with the same signature (name, the same number of parameters, and the same parameter types) are defined in different classes, one of which is a superclass of the other. 19
  • 20. UMBC CMSC 331 Java On designing class hierarchies • Programs should obey the explicit-representation principle, with classes included to reflect natural categories. • Programs should obey the no-duplication principle, with instance methods situated among class definitions to facilitate sharing. • Programs should obey the look-it-up principle, with class definitions including instance variables for stable, frequently requested information. • Programs should obey the need-to-know principle, with public interfaces designed to restrict instance-variable and instance-method access, thus facilitating the improvement and maintenance of nonpublic program elements. • If you find yourself using the phrase an X is a Y when describing the relation between two classes, then the X class is a subclass of the Y class. • If you find yourself using X has a Y when describing the relation between two classes, then instances of the Y class appear as parts of instances of the X class. 20
  • 21. UMBC CMSC 331 Java Data hiding and encapsulation • Data-hiding or encapsulation is an important part of the OO paradigm. • Classes should carefully control access to their data and methods in order to –Hide the irrelevant implementation-level details so they can be easily changed –Protect the class against accidental or malicious damage. –Keep the externally visible class simple and easy to document • Java has a simple access control mechanism to help with encapsulation 21
  • 22. UMBC CMSC 331 Java Example encapsulation package shapes; // Specify a package for the class public class Circle { // The class is still public public static final double PI = 3.14159; protected double r; // Radius is hidden, but visible to subclasses // A method to enforce the restriction on the radius // This is an implementation detail that may be of interest to subclasses protected checkRadius(double radius) { if (radius < 0.0) throw new IllegalArgumentException("radius may not be negative."); } // The constructor method public Circle(double r) {checkRadius(r); this.r = r; } // Public data accessor methods public double getRadius() { return r; }; public void setRadius(double r) { checkRadius(r); this.r = r;} // Methods to operate on the instance field public double area() { return PI * r * r; } public double circumference() { return 2 * PI * r; } } 22
  • 23. UMBC CMSC 331 Java Access control • Access to packages – Java offers no control mechanisms for packages. – If you can find and read the package you can access it • Access to classes – All top level classes in package P are accessible anywhere in P – All public top-level classes in P are accessible anywhere • Access to class members (in class C in package P) 23
  • 24. UMBC CMSC 331 Java 24
  • 25. UMBC CMSC 331 Java Getters and setters • A getter is a method that extracts information from an instance. – One benefit: you can include additional computation in a getter. • A setter is a method that inserts information into an instance (also known as mutators). – A setter method can check the validity of the new value (e.g., between 1 and 7) or trigger a side effect (e.g., update a display) • Getters and setters can be used even without underlying matching variables • Considered good OO practice • Essential to javabeans • Convention: for variable fooBar of type fbtype, define – getFooBar() – setFooBar(fbtype x) 25
  • 26. UMBC CMSC 331 Java Example getters and setters package shapes; // Specify a package for the class public class Circle { // The class is still public // This is a generally useful constant, so we keep it public public static final double PI = 3.14159; protected double r; // Radius is hidden, but visible to subclasses // A method to enforce the restriction on the radius // This is an implementation detail that may be of interest to subclasses protected checkRadius(double radius) { if (radius < 0.0) throw new IllegalArgumentException("radius may not be negative."); } // The constructor method public Circle(double r) { checkRadius(r); this.r = r;} // Public data accessor methods public double getRadius() { return r; }; public void setRadius(double r) { checkRadius(r); this.r = r;} // Methods to operate on the instance field public double area() { return PI * r * r; } public double circumference() { return 2 * PI * r; } } 26
  • 27. UMBC CMSC 331 Java Abstract classes and methods • Abstract vs. concrete classes • Abstract classes can not be instantiated public abstract class shape { } • An abstract method is a method w/o a body public abstract double area(); • (Only) Abstract classes can have abstract methods • In fact, any class with an abstract method is automatically an abstract class 27
  • 28. UMBC CMSC 331 Java Example abstract class public abstract class Shape { public abstract double area(); // Abstract methods: note public abstract double circumference();// semicolon instead of body. } class Circle extends Shape { public static final double PI = 3.14159265358979323846; protected double r; // Instance data public Circle(double r) { this.r = r; } // Constructor public double getRadius() { return r; } // Accessor public double area() { return PI*r*r; } // Implementations of public double circumference() { return 2*PI*r; } // abstract methods. } class Rectangle extends Shape { protected double w, h; // Instance data public Rectangle(double w, double h) { // Constructor this.w = w; this.h = h; } public double getWidth() { return w; } // Accessor method public double getHeight() { return h; } // Another accessor public double area() { return w*h; } // Implementations of public double circumference() { return 2*(w + h); } // abstract methods. } 28
  • 29. UMBC CMSC 331 Java Syntax Notes • No global variables – class variables and methods may be applied to any instance of an object – methods may have local (private?) variables • No pointers – but complex data objects are “referenced” • Other parts of Java are borrowed from PL/I, Modula, and other languages 29