SlideShare a Scribd company logo
10
Most read
13
Most read
14
Most read
JAVA
Prepared by
P.Prathibha
Lecturer
Topics for Today’s Session
Object Oriented Programming
JAVA TOKENS
COMMENTS
keywords Constants
Operators Separators
Identifiers
Initially developed
by
James Gosling
at
Sun Microsystems
and
released
in
1995.
JAVA
Object Oriented Programming
 Object oriented Programming is a modern programming method
to design a program using Classes and Objects
Objects
Real world entities that has their own
properties and behaviours such as
Book, Chair, Car, Pen, Table, etc.,
Class
A class is a blueprint or prototype from
which objects are created.
 Major objective is to eliminate unfavorable features
encountered in Procedural approach
What is
Java? Java is a computing platform for application development
and an object-oriented,
 Java is Class-based and Concurrent programming
language
 It means the code can be executed by multiple processes at
the same time.
 Java can run on all platforms and free to access.
 Java is Simple, Secure, Robust, Complete Object oriented
and Platform Independent High level Language
 It is Portable and Multi-thread technology gives High
Performance.
Java  Tokens
Java  Tokens
Java Tokens
 A Java Program
 contains number of classes
 Classes contains number of statements and methods
 Methods contains various expressions and statements.
which describes the actions carried out on data.
 Smallest individual units in a program are called
“Tokens”
 Token is basically smallest element, which is identified
by the Compiler.
 Java compiler uses tokens for constructing expressions
and statements.
Keywords
Identifier
Constants
Operators
Separators
Types of Tokens
Java Tokens are classified into
Keywords
 Keywords are essential part of a language definition.
 These are pre-defined or Reserved words in a
programming language.
 Keywords are standard identifiers and their functions is
predefined by the Compiler.
 Each keyword is assigned a special task cannot be
changed by the user.
 These cannot be used as identifiers.
 These are, a part of Java syntax .
 A keyword should always be written in lowercase as Java
is a case sensitive language.
 Java has reserved 50 words as Keywords.
List of Java Keywords
Java Identifiers
 Identifiers are Programmer designed tokens.
 These are used for identification purposes.
 Identifiers are the names, which are assigned to classes,
Objects, Labels, Variables, Methods, Packages and
Interfaces.
For Example: words which are in red are identifiers like
int num=2;
String str=“Hello”;
Class Fruit ( /* class members*/
Void function() {/* method body */
int sum() {/* method body*/
Points To Remember Regarding
Identifiers
1. We can use uppercase letters (A to Z), lowercase letters ( a to b),
dollar symbol ($), numerals (0 to 9) and underscore (_) only
while creating an Identifier.
2. Identifiers must begin with a letter, dollar sign or underscore.
But not with numbers.
3. Identifiers cannot be a keyword.
4. Identifiers are case-sensitive.
5. It's a convention to start an identifier with a letter rather
and $ or _.
6. After the first character, Identifier can have any combination of
characters
7. Whitespaces are not allowed.
8. Similarly, you cannot use symbols such as @, #, and so on.
Example: (Valid identifiers) : $xy, _name,ab12
Example: (Invalid identifiers) : *a,-h4,12num,%sd, float
Constants/ Literals
 Constants are also like normal variables. But their values can not be
modified by the program once they are defined.
 Constants refers to fixed values. They are also called as literals.
 Any constant value which can be assigned to the variable is called as
literal/constant.
 Constants are expressions with a immutable value.
 These are defined by users and can belong to any data type.
 Java supports five types of literals which are as follows:
1. Integer
2. Floating Point
3. Character
4. String
5. Boolean
Example: int a1 = 782; // Int literal
float c2 = 451.40; // Float literal
char c = “Hello” // char literal
String name = “Harsha"; // String literal
boolean x = true; // Boolean literal
Operators
 An operator is a symbol that represents a mathematical or
non- mathematical operation.
 Operators are used to perform operations on variables
and values.
 Java divides the operators into the following :
1. Arithmetic operators
2. Assignment operators
3. Relational / Comparison operators
4. Logical operators
5. Unary Operators ( Increment , Decrement Operators)
6. Bitwise operators
7. Conditional Operators
8. Special Operators
 Separator is a token used to separate two individual tokens used in a Java
program.
 These are Special symbols used to indicate where a groups of code are divided
and arranged.
 These are few characters which have special meaning known to Java
compiler and cannot be used for any other purpose.
 Separators are also known as Punctuators
Separators
Symbol Description
Brackets []
These are used as an array element reference and also indicates single
and multidimensional subscripts
Parentheses() These indicate a function call along with function parameters
Braces{}
Define the beginning and end of a block of code for Classes, Methods
and local scopes
Comma ( , )
To separate variable declarations, also helps in separating more than one
statement in an expression
Semi-Colon (;)
This is used to invoke an initialization list and also to separate
statements
Asterisk (*) This is used to create a pointer variable in Java
Period(.)
To separate package names from sub packages and classes and also
used to separate a variable or method from a reference variable.
Comments
 Comments in Java are often are non-executable statements,
used to understand the code better.
 Comments make the program more readable.
 Comments are ignored by the compiler while compiling a code.
 Comments are the statements that are not executed by the
compiler and interpreter.
 The comments can be used to provide information or
explanation about the variable, method, class or any statement.
Types of Java Comments: There are three types of comments :
1. Single Line Comment
2. Multi Line Comment
3. Documentation Comment
1. Single-line comments:
 This type of comment is mainly used for describing the code
functionality.
 These used to comment only one line.
 These start with two forward slashes (//).
 Any text between // and the end of the line is ignored by Java (will
not be executed).
//This is single line comment
2. Multi Line Comment
 The multi line comment is used to comment multiple lines of
code.
 Multi-line comments start with /* and ends with */.
 Any text between /* and */ will be ignored by Java.
/*
This is multi line
comment
*/
3. Documentation Comment
 This type of comments is used generally when you are writing
code for a project/ software package.
 The documentation comment is used to create documentation
API.
 To create documentation API, you need to use javadoc tool.
/**
This is
documentation
comment
*/
Conclusion
 In this lesson you learnt about
 Object Oriented Programming
 What is Java?
 Java Tokens
 Comments
Java  Tokens

More Related Content

PPTX
I/O Streams
PPTX
Classes, objects in JAVA
PPTX
Control flow statements in java
DOCX
Object Oriented Programming All Unit Notes
PDF
Chapter 02: Classes Objects and Methods Java by Tushar B Kute
PPTX
Java program structure
PPS
Wrapper class
I/O Streams
Classes, objects in JAVA
Control flow statements in java
Object Oriented Programming All Unit Notes
Chapter 02: Classes Objects and Methods Java by Tushar B Kute
Java program structure
Wrapper class

What's hot (20)

PPTX
Structure of java program diff c- cpp and java
PDF
Arrays in Java
PPTX
Event handling
PPTX
Data types in java
PDF
Java threads
PPS
Java Exception handling
PPTX
Interface in java
PPTX
Method overloading
PPTX
java interface and packages
PPTX
Type casting in java
PPTX
Basic Concepts of OOPs (Object Oriented Programming in Java)
PDF
PPTX
Control statements in java
PPTX
Inheritance in java
PDF
Java data types, variables and jvm
PPTX
Introduction to java
PPT
Abstract class in java
PPTX
Features of java
PPTX
Constructor in java
Structure of java program diff c- cpp and java
Arrays in Java
Event handling
Data types in java
Java threads
Java Exception handling
Interface in java
Method overloading
java interface and packages
Type casting in java
Basic Concepts of OOPs (Object Oriented Programming in Java)
Control statements in java
Inheritance in java
Java data types, variables and jvm
Introduction to java
Abstract class in java
Features of java
Constructor in java
Ad

Similar to Java Tokens (20)

PDF
Overview of java Language-3.pdf
PPTX
Java Unit-1.1 chunri kyu shuru kar rh koi si je di of du th n high ch ka dh h...
PPTX
PPTX
JAVA programming language made easy.pptx
PPTX
Lec 1.3 Object Oriented Programming
PPTX
Programming in java basics
PDF
ITFT - Java
PPTX
Module 1 full slidfcccccccccccccccccccccccccccccccccccdes.pptx
PDF
ch02-Java Fundamentals-Java Fundamentals.pdf
PPTX
Java tokens
PPTX
Chapter 2
PPTX
Java Programming
PPTX
Java Tokens in java program . pptx
PPTX
Java fundamentals
PPTX
OOP Introduction Part 2 In Java Language.pptx
PPT
Java Basics
PPTX
Java Basic Elements Lecture on Computer Science
PPT
Java_Identifiers_keywords_data_types.ppt
PPT
java tutorial for beginners learning.ppt
PPTX
Class 8 - Java.pptx
Overview of java Language-3.pdf
Java Unit-1.1 chunri kyu shuru kar rh koi si je di of du th n high ch ka dh h...
JAVA programming language made easy.pptx
Lec 1.3 Object Oriented Programming
Programming in java basics
ITFT - Java
Module 1 full slidfcccccccccccccccccccccccccccccccccccdes.pptx
ch02-Java Fundamentals-Java Fundamentals.pdf
Java tokens
Chapter 2
Java Programming
Java Tokens in java program . pptx
Java fundamentals
OOP Introduction Part 2 In Java Language.pptx
Java Basics
Java Basic Elements Lecture on Computer Science
Java_Identifiers_keywords_data_types.ppt
java tutorial for beginners learning.ppt
Class 8 - Java.pptx
Ad

More from Madishetty Prathibha (10)

PPTX
Object Oriented programming - Introduction
PPTX
Access modifiers in java
PPTX
Classes objects in java
PPTX
Operators in java
PPTX
Types of datastructures
PPTX
Introduction to algorithms
PPTX
Introduction to data structures (ss)
PDF
Oops concepts || Object Oriented Programming Concepts in Java
PPT
Java features
PPSX
Introduction of java
Object Oriented programming - Introduction
Access modifiers in java
Classes objects in java
Operators in java
Types of datastructures
Introduction to algorithms
Introduction to data structures (ss)
Oops concepts || Object Oriented Programming Concepts in Java
Java features
Introduction of java

Recently uploaded (20)

PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PPTX
Lesson notes of climatology university.
PDF
Computing-Curriculum for Schools in Ghana
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PPTX
PPH.pptx obstetrics and gynecology in nursing
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
Sports Quiz easy sports quiz sports quiz
PPTX
GDM (1) (1).pptx small presentation for students
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PDF
Classroom Observation Tools for Teachers
PPTX
Pharma ospi slides which help in ospi learning
PPTX
master seminar digital applications in india
PDF
Complications of Minimal Access Surgery at WLH
PDF
VCE English Exam - Section C Student Revision Booklet
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PPTX
Cell Structure & Organelles in detailed.
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
102 student loan defaulters named and shamed – Is someone you know on the list?
Lesson notes of climatology university.
Computing-Curriculum for Schools in Ghana
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PPH.pptx obstetrics and gynecology in nursing
2.FourierTransform-ShortQuestionswithAnswers.pdf
Sports Quiz easy sports quiz sports quiz
GDM (1) (1).pptx small presentation for students
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
STATICS OF THE RIGID BODIES Hibbelers.pdf
Microbial diseases, their pathogenesis and prophylaxis
Classroom Observation Tools for Teachers
Pharma ospi slides which help in ospi learning
master seminar digital applications in india
Complications of Minimal Access Surgery at WLH
VCE English Exam - Section C Student Revision Booklet
Pharmacology of Heart Failure /Pharmacotherapy of CHF
human mycosis Human fungal infections are called human mycosis..pptx
Cell Structure & Organelles in detailed.

Java Tokens

  • 2. Topics for Today’s Session Object Oriented Programming JAVA TOKENS COMMENTS keywords Constants Operators Separators Identifiers
  • 3. Initially developed by James Gosling at Sun Microsystems and released in 1995. JAVA
  • 4. Object Oriented Programming  Object oriented Programming is a modern programming method to design a program using Classes and Objects Objects Real world entities that has their own properties and behaviours such as Book, Chair, Car, Pen, Table, etc., Class A class is a blueprint or prototype from which objects are created.  Major objective is to eliminate unfavorable features encountered in Procedural approach
  • 5. What is Java? Java is a computing platform for application development and an object-oriented,  Java is Class-based and Concurrent programming language  It means the code can be executed by multiple processes at the same time.  Java can run on all platforms and free to access.  Java is Simple, Secure, Robust, Complete Object oriented and Platform Independent High level Language  It is Portable and Multi-thread technology gives High Performance.
  • 8. Java Tokens  A Java Program  contains number of classes  Classes contains number of statements and methods  Methods contains various expressions and statements. which describes the actions carried out on data.  Smallest individual units in a program are called “Tokens”  Token is basically smallest element, which is identified by the Compiler.  Java compiler uses tokens for constructing expressions and statements.
  • 10. Keywords  Keywords are essential part of a language definition.  These are pre-defined or Reserved words in a programming language.  Keywords are standard identifiers and their functions is predefined by the Compiler.  Each keyword is assigned a special task cannot be changed by the user.  These cannot be used as identifiers.  These are, a part of Java syntax .  A keyword should always be written in lowercase as Java is a case sensitive language.  Java has reserved 50 words as Keywords.
  • 11. List of Java Keywords
  • 12. Java Identifiers  Identifiers are Programmer designed tokens.  These are used for identification purposes.  Identifiers are the names, which are assigned to classes, Objects, Labels, Variables, Methods, Packages and Interfaces. For Example: words which are in red are identifiers like int num=2; String str=“Hello”; Class Fruit ( /* class members*/ Void function() {/* method body */ int sum() {/* method body*/
  • 13. Points To Remember Regarding Identifiers 1. We can use uppercase letters (A to Z), lowercase letters ( a to b), dollar symbol ($), numerals (0 to 9) and underscore (_) only while creating an Identifier. 2. Identifiers must begin with a letter, dollar sign or underscore. But not with numbers. 3. Identifiers cannot be a keyword. 4. Identifiers are case-sensitive. 5. It's a convention to start an identifier with a letter rather and $ or _. 6. After the first character, Identifier can have any combination of characters 7. Whitespaces are not allowed. 8. Similarly, you cannot use symbols such as @, #, and so on. Example: (Valid identifiers) : $xy, _name,ab12 Example: (Invalid identifiers) : *a,-h4,12num,%sd, float
  • 14. Constants/ Literals  Constants are also like normal variables. But their values can not be modified by the program once they are defined.  Constants refers to fixed values. They are also called as literals.  Any constant value which can be assigned to the variable is called as literal/constant.  Constants are expressions with a immutable value.  These are defined by users and can belong to any data type.  Java supports five types of literals which are as follows: 1. Integer 2. Floating Point 3. Character 4. String 5. Boolean Example: int a1 = 782; // Int literal float c2 = 451.40; // Float literal char c = “Hello” // char literal String name = “Harsha"; // String literal boolean x = true; // Boolean literal
  • 15. Operators  An operator is a symbol that represents a mathematical or non- mathematical operation.  Operators are used to perform operations on variables and values.  Java divides the operators into the following : 1. Arithmetic operators 2. Assignment operators 3. Relational / Comparison operators 4. Logical operators 5. Unary Operators ( Increment , Decrement Operators) 6. Bitwise operators 7. Conditional Operators 8. Special Operators
  • 16.  Separator is a token used to separate two individual tokens used in a Java program.  These are Special symbols used to indicate where a groups of code are divided and arranged.  These are few characters which have special meaning known to Java compiler and cannot be used for any other purpose.  Separators are also known as Punctuators Separators Symbol Description Brackets [] These are used as an array element reference and also indicates single and multidimensional subscripts Parentheses() These indicate a function call along with function parameters Braces{} Define the beginning and end of a block of code for Classes, Methods and local scopes Comma ( , ) To separate variable declarations, also helps in separating more than one statement in an expression Semi-Colon (;) This is used to invoke an initialization list and also to separate statements Asterisk (*) This is used to create a pointer variable in Java Period(.) To separate package names from sub packages and classes and also used to separate a variable or method from a reference variable.
  • 17. Comments  Comments in Java are often are non-executable statements, used to understand the code better.  Comments make the program more readable.  Comments are ignored by the compiler while compiling a code.  Comments are the statements that are not executed by the compiler and interpreter.  The comments can be used to provide information or explanation about the variable, method, class or any statement. Types of Java Comments: There are three types of comments : 1. Single Line Comment 2. Multi Line Comment 3. Documentation Comment
  • 18. 1. Single-line comments:  This type of comment is mainly used for describing the code functionality.  These used to comment only one line.  These start with two forward slashes (//).  Any text between // and the end of the line is ignored by Java (will not be executed). //This is single line comment 2. Multi Line Comment  The multi line comment is used to comment multiple lines of code.  Multi-line comments start with /* and ends with */.  Any text between /* and */ will be ignored by Java. /* This is multi line comment */
  • 19. 3. Documentation Comment  This type of comments is used generally when you are writing code for a project/ software package.  The documentation comment is used to create documentation API.  To create documentation API, you need to use javadoc tool. /** This is documentation comment */
  • 20. Conclusion  In this lesson you learnt about  Object Oriented Programming  What is Java?  Java Tokens  Comments