SlideShare a Scribd company logo
Introduction to Java
CS 331
Introduction
• Present the syntax of Java
• Introduce the Java API
• Demonstrate how to build
–stand-alone Java programs
–Java applets, which run within browsers
e.g. Netscape
• Example programs
Why Java?
• It’s the current “hot” language
• It’s almost entirely object-oriented
• It has a vast library of predefined
objects and operations
• It’s more platform independent
–this makes it great for Web programming
• It’s more secure
• It isn’t C++
Applets, Servlets and
Applications
• An is designed to be embedded
in a Web page, and run by a browser
• Applets run in a with
numerous restrictions; for example,
they can’t read files and then use the
network
• A is designed to be run by a
web server
• An is a conventional
program
Building Standalone JAVA
Programs (on UNIX)
• Prepare the file f oo. j ava using an
editor
• Invoke the compiler: j avac
f oo. j ava
• This creates f oo. cl ass
• Run the java interpreter: j ava f oo
Java Virtual Machine
• The .class files generated by the
compiler are not executable binaries
–so Java combines compilation and
interpretation
• Instead, they contain “byte-codes” to
be executed by the Java Virtual Machine
–other languages have done this, e.g. UCSD
Pascal
• This approach provides platform
independence, and greater security
HelloWorld (standalone)
publ i c cl ass Hel l oW
or l d {
publ i c st at i c voi d m
ai n( St r i ng[ ] ar gs) {
Syst em
. out . pr i nt l n( " Hel l o W
or l d! " ) ;
}
}
• Note that String is built in
• println is a member function for the
System.out class
Comments are almost like
C++
• /* 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
*/
Primitive data types are like C
• Main data types are int, double,
boolean, char
• Also have byte, short, long, float
• boolean has values true and false
• Declarations look like C, for example,
–double x, y;
–int count = 0;
Expressions are like C
• Assignment statements mostly look like those in
C; you can use =, +=, *= etc.
• Arithmetic uses the familiar + - * / %
• Java also has ++ and --
• Java has boolean operators && || !
• Java has comparisons < <= == != >= >
• Java does have pointers or pointer arithmetic
Control statements are like C
• if (x < y) smaller = x;
• if (x < y){ smaller=x;sum += x;}
else { smaller = y; sum += y; }
• while (x < y) { y = y - x; }
• do { y = y - x; } while (x < y)
• for (int i = 0; i < max; i++)
sum += i;
• BUT: conditions must be boolean !
Control statements II
• Java also introduces the try statement,
about which more later
switch (n + 1) {
case 0: m = n - 1; break;
case 1: m = n + 1;
case 3: m = m * n; break;
default: m = -n; break;
}
Java isn't C!
• In C, almost everything is in functions
• In Java, almost everything is in classes
• There is often only one class per file
• There be only one public class
per file
• The file name be the same as the
name of that public class, but with a .
java extension
Java program layout
• A typical Java file looks like:
import java.awt.*;
import java.util.*;
public class SomethingOrOther {
// object definitions go here
. . .
}
This must be in a file named SomethingOrOther.java
!
What is a class?
• Early languages had only arrays
–all elements had to be of the same type
• Then languages introduced structures
(called records, or structs)
–allowed different data types to be grouped
• Then Abstract Data Types (ADTs) became
popular
–grouped operations along with the data
So, what is a class?
• A class consists of
–a collection of , or , very
much like the named fields of a struct
–all the operations (called ) that
can be performed on those fields
–can be
• A class describes objects and
operations defined on those objects
Name conventions
• Java is case-sensitive; maxval, maxVal,
and MaxVal are three different names
• Class names begin with a capital letter
• All other names begin with a lowercase
letter
• Subsequent words are capitalized:
theBigOne
• Underscores are not used in names
• These are conventions!
The class hierarchy
• Classes are arranged in a hierarchy
• The root, or topmost, class is Object
• Every class but Object has at least one
superclass
• A class may have subclasses
• Each class all the fields and
methods of its (possibly numerous)
superclasses
An example of a class
class Person {
String name;
int age;
void birthday ( ) {
age++;
System.out.println (name + ' is
now ' + age);
}
}
Another example of a class
class Driver extends Person {
long driversLicenseNumber;
Date expirationDate;
}
Creating and using an object
• Person john;
john = new Person ( );
john.name = "John Smith";
john.age = 37;
• Person mary = new Person ( );
mary.name = "Mary Brown";
mary.age = 33;
mary.birthday ( );
An array is an object
• Person mary = new Person ( );
• int myArray[ ] = new int[5];
–or:
• int myArray[ ] = {1, 4, 9, 16,
25};
• String languages [ ] =
{"Prolog", "Java"};

More Related Content

Similar to java01.pdf (20)

PPT
java01.ppt
TarundeepSingh78
 
PPT
OOPs concept and java Environment decsion making statement looping array and ...
hannahroseline2
 
PPT
java01.ppt
BabekEsedli
 
PPT
java01.ppt
SachinBhosale73
 
PPT
java01.ppt
priyanshugautam46
 
PPT
java01.ppt
archibhartiya
 
PPT
java01.ppt
JyoGen
 
PPT
java01.ppt
ximiha8972
 
PPT
java_ notes_for__________basic_level.ppt
amisharawat149
 
PPT
java ppt for basic intro about java and its
kssandhu875
 
PPT
Java - A parent language and powerdul for mobile apps.
dhimananshu130803
 
PPT
Java intro
Sonam Sharma
 
PPT
Java01
Remon Hanna
 
PPT
Java01
Dhaval Patel
 
PPT
Present the syntax of Java Introduce the Java
ssuserfd620b
 
PPT
Java
Manav Prasad
 
PPT
java01.pptbvuyvyuvvvvvvvvvvvvvvvvvvvvyft
nagendrareddy104104
 
PPT
Java Simple Introduction in single course
binzbinz3
 
PPT
java-corporate-training-institute-in-mumbai
Unmesh Baile
 
java01.ppt
TarundeepSingh78
 
OOPs concept and java Environment decsion making statement looping array and ...
hannahroseline2
 
java01.ppt
BabekEsedli
 
java01.ppt
SachinBhosale73
 
java01.ppt
priyanshugautam46
 
java01.ppt
archibhartiya
 
java01.ppt
JyoGen
 
java01.ppt
ximiha8972
 
java_ notes_for__________basic_level.ppt
amisharawat149
 
java ppt for basic intro about java and its
kssandhu875
 
Java - A parent language and powerdul for mobile apps.
dhimananshu130803
 
Java intro
Sonam Sharma
 
Java01
Remon Hanna
 
Java01
Dhaval Patel
 
Present the syntax of Java Introduce the Java
ssuserfd620b
 
java01.pptbvuyvyuvvvvvvvvvvvvvvvvvvvvyft
nagendrareddy104104
 
Java Simple Introduction in single course
binzbinz3
 
java-corporate-training-institute-in-mumbai
Unmesh Baile
 

Recently uploaded (20)

PPTX
infertility, types,causes, impact, and management
Ritu480198
 
PPTX
How to Create a Customer From Website in Odoo 18.pptx
Celine George
 
PDF
epi editorial commitee meeting presentation
MIPLM
 
PDF
Lesson 1 - Nature of Inquiry and Research.pdf
marvinnbustamante1
 
PDF
Vani - The Voice of Excellence - Jul 2025 issue
Savipriya Raghavendra
 
PDF
Introduction presentation of the patentbutler tool
MIPLM
 
PDF
AI-assisted IP-Design lecture from the MIPLM 2025
MIPLM
 
PDF
Council of Chalcedon Re-Examined
Smiling Lungs
 
PPTX
Building Powerful Agentic AI with Google ADK, MCP, RAG, and Ollama.pptx
Tamanna36
 
PPTX
Difference between write and update in odoo 18
Celine George
 
PPTX
Different types of inheritance in odoo 18
Celine George
 
PPTX
SD_GMRC5_Session 6AB_Dulog Pedagohikal at Pagtataya (1).pptx
NickeyArguelles
 
PPTX
AIMA UCSC-SV Leadership_in_the_AI_era 20250628 v16.pptx
home
 
PDF
Android Programming - Basics of Mobile App, App tools and Android Basics
Kavitha P.V
 
PPTX
Nitrogen rule, ring rule, mc lafferty.pptx
nbisen2001
 
PPT
Indian Contract Act 1872, Business Law #MBA #BBA #BCOM
priyasinghy107
 
PPTX
Introduction to Biochemistry & Cellular Foundations.pptx
marvinnbustamante1
 
PDF
WATERSHED MANAGEMENT CASE STUDIES - ULUGURU MOUNTAINS AND ARVARI RIVERpdf
Ar.Asna
 
PPTX
Lesson 1 Cell (Structures, Functions, and Theory).pptx
marvinnbustamante1
 
PDF
IMPORTANT GUIDELINES FOR M.Sc.ZOOLOGY DISSERTATION
raviralanaresh2
 
infertility, types,causes, impact, and management
Ritu480198
 
How to Create a Customer From Website in Odoo 18.pptx
Celine George
 
epi editorial commitee meeting presentation
MIPLM
 
Lesson 1 - Nature of Inquiry and Research.pdf
marvinnbustamante1
 
Vani - The Voice of Excellence - Jul 2025 issue
Savipriya Raghavendra
 
Introduction presentation of the patentbutler tool
MIPLM
 
AI-assisted IP-Design lecture from the MIPLM 2025
MIPLM
 
Council of Chalcedon Re-Examined
Smiling Lungs
 
Building Powerful Agentic AI with Google ADK, MCP, RAG, and Ollama.pptx
Tamanna36
 
Difference between write and update in odoo 18
Celine George
 
Different types of inheritance in odoo 18
Celine George
 
SD_GMRC5_Session 6AB_Dulog Pedagohikal at Pagtataya (1).pptx
NickeyArguelles
 
AIMA UCSC-SV Leadership_in_the_AI_era 20250628 v16.pptx
home
 
Android Programming - Basics of Mobile App, App tools and Android Basics
Kavitha P.V
 
Nitrogen rule, ring rule, mc lafferty.pptx
nbisen2001
 
Indian Contract Act 1872, Business Law #MBA #BBA #BCOM
priyasinghy107
 
Introduction to Biochemistry & Cellular Foundations.pptx
marvinnbustamante1
 
WATERSHED MANAGEMENT CASE STUDIES - ULUGURU MOUNTAINS AND ARVARI RIVERpdf
Ar.Asna
 
Lesson 1 Cell (Structures, Functions, and Theory).pptx
marvinnbustamante1
 
IMPORTANT GUIDELINES FOR M.Sc.ZOOLOGY DISSERTATION
raviralanaresh2
 
Ad

java01.pdf

  • 2. Introduction • Present the syntax of Java • Introduce the Java API • Demonstrate how to build –stand-alone Java programs –Java applets, which run within browsers e.g. Netscape • Example programs
  • 3. Why Java? • It’s the current “hot” language • It’s almost entirely object-oriented • It has a vast library of predefined objects and operations • It’s more platform independent –this makes it great for Web programming • It’s more secure • It isn’t C++
  • 4. Applets, Servlets and Applications • An is designed to be embedded in a Web page, and run by a browser • Applets run in a with numerous restrictions; for example, they can’t read files and then use the network • A is designed to be run by a web server • An is a conventional program
  • 5. Building Standalone JAVA Programs (on UNIX) • Prepare the file f oo. j ava using an editor • Invoke the compiler: j avac f oo. j ava • This creates f oo. cl ass • Run the java interpreter: j ava f oo
  • 6. Java Virtual Machine • The .class files generated by the compiler are not executable binaries –so Java combines compilation and interpretation • Instead, they contain “byte-codes” to be executed by the Java Virtual Machine –other languages have done this, e.g. UCSD Pascal • This approach provides platform independence, and greater security
  • 7. HelloWorld (standalone) publ i c cl ass Hel l oW or l d { publ i c st at i c voi d m ai n( St r i ng[ ] ar gs) { Syst em . out . pr i nt l n( " Hel l o W or l d! " ) ; } } • Note that String is built in • println is a member function for the System.out class
  • 8. Comments are almost like C++ • /* 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 */
  • 9. Primitive data types are like C • Main data types are int, double, boolean, char • Also have byte, short, long, float • boolean has values true and false • Declarations look like C, for example, –double x, y; –int count = 0;
  • 10. Expressions are like C • Assignment statements mostly look like those in C; you can use =, +=, *= etc. • Arithmetic uses the familiar + - * / % • Java also has ++ and -- • Java has boolean operators && || ! • Java has comparisons < <= == != >= > • Java does have pointers or pointer arithmetic
  • 11. Control statements are like C • if (x < y) smaller = x; • if (x < y){ smaller=x;sum += x;} else { smaller = y; sum += y; } • while (x < y) { y = y - x; } • do { y = y - x; } while (x < y) • for (int i = 0; i < max; i++) sum += i; • BUT: conditions must be boolean !
  • 12. Control statements II • Java also introduces the try statement, about which more later switch (n + 1) { case 0: m = n - 1; break; case 1: m = n + 1; case 3: m = m * n; break; default: m = -n; break; }
  • 13. Java isn't C! • In C, almost everything is in functions • In Java, almost everything is in classes • There is often only one class per file • There be only one public class per file • The file name be the same as the name of that public class, but with a . java extension
  • 14. Java program layout • A typical Java file looks like: import java.awt.*; import java.util.*; public class SomethingOrOther { // object definitions go here . . . } This must be in a file named SomethingOrOther.java !
  • 15. What is a class? • Early languages had only arrays –all elements had to be of the same type • Then languages introduced structures (called records, or structs) –allowed different data types to be grouped • Then Abstract Data Types (ADTs) became popular –grouped operations along with the data
  • 16. So, what is a class? • A class consists of –a collection of , or , very much like the named fields of a struct –all the operations (called ) that can be performed on those fields –can be • A class describes objects and operations defined on those objects
  • 17. Name conventions • Java is case-sensitive; maxval, maxVal, and MaxVal are three different names • Class names begin with a capital letter • All other names begin with a lowercase letter • Subsequent words are capitalized: theBigOne • Underscores are not used in names • These are conventions!
  • 18. The class hierarchy • Classes are arranged in a hierarchy • The root, or topmost, class is Object • Every class but Object has at least one superclass • A class may have subclasses • Each class all the fields and methods of its (possibly numerous) superclasses
  • 19. An example of a class class Person { String name; int age; void birthday ( ) { age++; System.out.println (name + ' is now ' + age); } }
  • 20. Another example of a class class Driver extends Person { long driversLicenseNumber; Date expirationDate; }
  • 21. Creating and using an object • Person john; john = new Person ( ); john.name = "John Smith"; john.age = 37; • Person mary = new Person ( ); mary.name = "Mary Brown"; mary.age = 33; mary.birthday ( );
  • 22. An array is an object • Person mary = new Person ( ); • int myArray[ ] = new int[5]; –or: • int myArray[ ] = {1, 4, 9, 16, 25}; • String languages [ ] = {"Prolog", "Java"};