SlideShare a Scribd company logo
1 of 36
Learn Java in 2 days
By Ahmed Ali Ali © 2013
Email : ahmed14ghaly@gmail.com
a14a2a1992a@yahoo.com

By Ahmed Ali Ali © 2013

1
Agenda
First day

Second day (soon)

•Introduction
•Class

•File

Declarations & Modifiers

•Wrapper

Classes

•Handling

I/O

•inner

class

Exceptions

•Threads
•Collections

•immutable
•StringBuffer, and
•Tokenizing
•Quiz

StringBuilder

•Utility

Classes: Collections and Arrays

•Generics
•Quiz

By Ahmed Ali Ali © 2013

2
Introduction
•

Java is an object-oriented programming language .

•

Java was started as a project called "Oak" by James Gosling in June1991. Gosling's
goals were to implement a virtual machine and a language that had a familiar Clike notation but with greater uniformity and simplicity than C/C++. The first

public implementation was Java 1.0 in 1995
• The

language itself borrows much syntax from C and C++ but has a

simpler object model and fewer low-level facilities.
•

Java Is Easy to Learn

By Ahmed Ali Ali © 2013

3
Complete List of Java Keywords

By Ahmed Ali Ali © 2013

4
My First Java Program

By Ahmed Ali Ali © 2013

5
Class Declarations
•

Source File Declaration Rules

o only one public class per source code file.
o A file can have more than one nonpublic class.

o If there is a public class in a file, the name of the file must match the name of the
public class.
o If the class is part of a package, the package statement must be the first line in
the source code file, before any import statements that may be present
o import and package statements apply to all classes within a source code file.

By Ahmed Ali Ali © 2013

6
Class Access(Class Modifiers)
• What

•

does it mean to access a class?

Class Modifiers
o Public Access
o Default Access

•

package cert;
Public class Beverage { }
package cert;
class Beverage { }

Other (Non access) Class Modifiers
o Final Classes

package cert;
Final class Beverage { }

o Abstract Classes

package cert;
Abstract class Beverage { }

By Ahmed Ali Ali © 2013

7
Declare Interfaces
• An

interface must be declared with the keyword interface.

• All

interface methods are implicitly public and abstract. In other words, you do not need to actually
type the public or abstract .

•

Interface methods must not be static.

•

Because interface methods are abstract, they cannot be marked final,

• All

variables defined in an interface must be public, static, and final.

• An

interface can extend one or more other interfaces.

• An

interface cannot implement another interface or class.
By Ahmed Ali Ali © 2013

8
Declare Class Members
•We've

looked at what it means to use a modifier in a class declaration, and now
we'll look at what it means to modify a method or variable declaration.
• Access

o
o
o
o
•

Modifiers

public
protected
default
private

Nonaccess Member Modifiers

o Final and abstract
o Synchronized methods
By Ahmed Ali Ali © 2013

9
Determining Access to Class
Member

By Ahmed Ali Ali © 2013

10
Develop Constructors
• The

•

constructor name must match the name of the class.

If you don't type a constructor into your class code, a default constructor will be
automatically generated by the compiler.

•

Constructors must not have a return type.

•

Constructors can use any access modifier,

•

Every class, including abstract classes, MUST have a constructor.

•

constructors are invoked at runtime when you say new on some class.
By Ahmed Ali Ali © 2013

11
Variable Declarations
•

There are two types of variables in Java:

o Primitives : A primitive can be one of eight types: char, boolean, byte,
short, int, long, double, or float. Once a primitive has been declared, its
primitive type can never change, although in most cases its value can
change.
o Reference variables : A reference variable is used to refer to (or
access) an object. A reference variable is declared to be of a specific
type and that type can never be changed.
•

Note :

o It is legal to declare a local variable with the same name as an instance
variable; this is called "shadowing."
By Ahmed Ali Ali © 2013

12
Variable Scope

By Ahmed Ali Ali © 2013

13
if and switch Statements
• The

•

only legal expression in an if statement is a boolean expression.

Curly braces are optional for if blocks that have only
one conditional statement.

•

switch statements can evaluate only to enums or the
byte, short, int, and char data types.You can't say,

By Ahmed Ali Ali © 2013

14
Ternary (Conditional Operator)
Returns one of two values based on whether a boolean expression is true or
false.
•

•

Returns the value after the ? if the expression is true.

•

Returns the value after the : if the expression is false.
x = (boolean expression) ? value to assign if true : value to assign if false

By Ahmed Ali Ali © 2013

15
String Concatenation Operator
•

If either operand is a String, the + operator concatenates the operands.

•

If both operands are numeric, the + operator adds the operands.

By Ahmed Ali Ali © 2013

16
Overloading & Overriding
• Abstract

methods must be overridden by the first concrete (subclass).

•

final methods cannot be overridden.

•

Only inherited methods may be overridden, and remember that private methods
are not inherited.

•A

subclass uses super. overriddenMethodName() to call the superclass version of

an overridden method.
•

Object type (not the reference variable's type), determines which overridden
method is used at runtime.
By Ahmed Ali Ali © 2013

17
Overloading & Overriding (cont’)
•

Methods from a superclass can be overloaded in a subclass.

•

constructors can be overloaded but not overridden.

•

Overloading means reusing a method name, but with different arguments.

•

Overloaded methods.
o Must have different argument lists
o May have different return types, if argument lists are also different
o May have different access modifiers
o May throw different exceptions

•

Polymorphism applies to overriding, not to overloading.

•

Reference type determines which overloaded method will be used at
compile time.

By Ahmed Ali Ali © 2013

18
Stack and Heap—Quick Review
•

understanding the basics of the stack and the heap makes it far easier to
understand topics like argument passing, threads, exceptions,

•

Instance variables and objects live on the heap.

•

Local variables live on the stack.

By Ahmed Ali Ali © 2013

19
Wrapper Classes
•What’s consept of Wrapper Class ?
•The wrapper classes correlate to the primitive types
•The three most important method families are
o xxxValue() Takes no arguments, returns a primitive
o parseXxx() Takes a String, returns a primitive
o valueOf() Takes a String, returns a wrapped object

By Ahmed Ali Ali © 2013

20
Handling Exceptions
• The

term "exception" means "exceptional condition" and is an occurrence that

alters the normal program flow.
•

Exception handling allows developers to detect errors easily without writing
special code to test return values.

•A

bunch of things can lead to exceptions, including hardware failures, resource

exhaustion, and good old bugs.
When an exceptional event occurs in Java, an exception is said to be "thrown." The
code that's responsible for doing something about the exception is called an
"exception handler," and it "catches" the thrown exception.

By Ahmed Ali Ali © 2013

21
Handling Exceptions (cont’)

Example :

By Ahmed Ali Ali © 2013

22
Assertion Mechanism
•

the assertion mechanism, added to the language with version 1.4, gives you
a way to do testing and debugging checks on conditions you expect to smoke out
while developing,

•

writing code with assert statement will help you to be better programmer
and improve quality of code, yes this is true based on my experience when we
write code using assert statement we think through hard, we think about possible
input to a function, we think about boundary condition which eventually result in
better discipline and quality code.

"If" is a conditional operator with a specific loop syntax. It can be followed with the
loop continuation syntax "else". The "Assert" keyword will throw a run-time error if
the condition of the loop returns 'false' and is used for conditional validation(parameter checking).
Assertions are mainly used to debug code and are generally removed in a live product. Both "If" &
"Assert" evaluate a Boolean condition.

•

By Ahmed Ali Ali © 2013

23
Assertion Mechanism
Use assertions for internal logic checks within your code, and normal exceptions for
error conditions outside your immediate code's control.
Really simple:
private void doStuff() {
assert (y > x);
// more code assuming y
//is greater than x
}
Simple:
private void doStuff() {
assert (y > x): "y is " + y + " x is " + x;
// more code assuming y is greater than x
}

By Ahmed Ali Ali © 2013

24
immutable
•

an immutable object is an object whose state cannot be modified after it is

created
•Strings

Are Immutable Objects

By Ahmed Ali Ali © 2013

25
StringBuffer, and StringBuilder
•

The java.lang.StringBuffer and java.lang.StringBuilder classes should

be used when you have to make a lot of modifications to strings of
characters

•

StringBuilder is not thread safe. In other words, its
methods are not synchronized.

•

StringBuilder runs faster.

By Ahmed Ali Ali © 2013

26
Dates, Numbers, and Currency
•

Here are the date related classes you'll need to understand.

o java.util.Date
o java.util.Calendar

o java.text.DateFormat
o java.text.NumberFormat
o java.util.Locale
By Ahmed Ali Ali © 2013

27
Dates, Numbers, and Currency
(cont’)

By Ahmed Ali Ali © 2013

28
Dates, Numbers, and Currency
(cont’)

By Ahmed Ali Ali © 2013

29
A Search Tutorial
• To

find specific pieces of data in large data sources, Java provides several
mechanisms that use the concepts of regular expressions (Regex).

Simple Searches
we'd like to search through the following source String (abaaaba)
for all occurrences (or matches) of the expression (ab) .

• What

the result if we search on (aba) inside the String (abababa) ?
By Ahmed Ali Ali © 2013

30
A Search Tutorial (cont’)
[abc] Searches only for a's, b's or c's

[a-f] Searches only for a, b, c, d, e, or f characters
d A digit
s A whitespace character
w A word character (letters, digits, or "_" (underscore))
the quantifier that represents "one or more" is the "+" (Ex. d+)
Example :
source: "a 1 56 _Z"
index: 012345678

pattern: w
In this case will return positions 0, 2, 4, 5, 7, and 8.
By Ahmed Ali Ali © 2013

31
Tokenizing
• Tokenizing

is the process of taking big pieces of source data, breaking

them into little pieces, and storing the little pieces in variables.
Tokens and Delimiters
source: "ab,cd5b,6x,z4"
If we say that our delimiter is a comma, then our four tokens would be
ab
cd5b

6x
z4
By Ahmed Ali Ali © 2013

32
Tokenizing (cont’)
Tokenizing with String.split()

By Ahmed Ali Ali © 2013

33
Quiz

By Ahmed Ali Ali © 2013

34
Questions
By Ahmed Ali Ali © 2013

35
Thanks
By Ahmed Ali Ali © 2013

36

More Related Content

What's hot

Logística de produção
Logística de produçãoLogística de produção
Logística de produçãoSandro Souza
 
Logística e distribuição
Logística e distribuiçãoLogística e distribuição
Logística e distribuiçãoGilberto Freitas
 
Supply Chain Transformation - From First to the Last Mile
Supply Chain Transformation - From First to the Last MileSupply Chain Transformation - From First to the Last Mile
Supply Chain Transformation - From First to the Last MileKris Gorrepati
 
presentation1Capital Gate Tower.pdf
presentation1Capital Gate Tower.pdfpresentation1Capital Gate Tower.pdf
presentation1Capital Gate Tower.pdfMuhammedJawad6
 
A influência dos layouts industriais e a organização da produção
A influência dos layouts industriais e a organização da produçãoA influência dos layouts industriais e a organização da produção
A influência dos layouts industriais e a organização da produçãoUniversidade Federal Fluminense
 
Gestão da Tecnologia da Inovação na Logística
Gestão da Tecnologia da Inovação na LogísticaGestão da Tecnologia da Inovação na Logística
Gestão da Tecnologia da Inovação na LogísticaAdeildo Caboclo
 
Warehousing and inventory management
Warehousing and inventory managementWarehousing and inventory management
Warehousing and inventory managementotchmarz
 
Movimentacao de Materiais
Movimentacao de MateriaisMovimentacao de Materiais
Movimentacao de Materiaisazevedoac
 
Gestão 3 - Mecânica - Aula 01
Gestão 3 - Mecânica - Aula 01Gestão 3 - Mecânica - Aula 01
Gestão 3 - Mecânica - Aula 01Anderson Pontes
 
INTRODUÇÃO À LOGÍSTICA
INTRODUÇÃO À LOGÍSTICAINTRODUÇÃO À LOGÍSTICA
INTRODUÇÃO À LOGÍSTICAAntonio Bacelar
 
Logística Introdução.pptx
Logística Introdução.pptxLogística Introdução.pptx
Logística Introdução.pptxDrikaSato
 
AUTOMOTIVE INDUSTRY DESIGN A WAREHOUSE , LAYOUT,LOCATION
AUTOMOTIVE INDUSTRY DESIGN A WAREHOUSE ,  LAYOUT,LOCATIONAUTOMOTIVE INDUSTRY DESIGN A WAREHOUSE ,  LAYOUT,LOCATION
AUTOMOTIVE INDUSTRY DESIGN A WAREHOUSE , LAYOUT,LOCATIONVEENA VIKRAMAN
 
Modais de transporte
Modais de transporteModais de transporte
Modais de transporteMatheus Roger
 

What's hot (20)

Consolidação deCargas e Conteinerização
Consolidação deCargas e ConteinerizaçãoConsolidação deCargas e Conteinerização
Consolidação deCargas e Conteinerização
 
Logística de produção
Logística de produçãoLogística de produção
Logística de produção
 
Logística e distribuição
Logística e distribuiçãoLogística e distribuição
Logística e distribuição
 
Supply Chain Transformation - From First to the Last Mile
Supply Chain Transformation - From First to the Last MileSupply Chain Transformation - From First to the Last Mile
Supply Chain Transformation - From First to the Last Mile
 
presentation1Capital Gate Tower.pdf
presentation1Capital Gate Tower.pdfpresentation1Capital Gate Tower.pdf
presentation1Capital Gate Tower.pdf
 
A influência dos layouts industriais e a organização da produção
A influência dos layouts industriais e a organização da produçãoA influência dos layouts industriais e a organização da produção
A influência dos layouts industriais e a organização da produção
 
Gestão da Tecnologia da Inovação na Logística
Gestão da Tecnologia da Inovação na LogísticaGestão da Tecnologia da Inovação na Logística
Gestão da Tecnologia da Inovação na Logística
 
warehouse
warehouse warehouse
warehouse
 
Apresentação institucional TI
Apresentação institucional TIApresentação institucional TI
Apresentação institucional TI
 
Warehousing and inventory management
Warehousing and inventory managementWarehousing and inventory management
Warehousing and inventory management
 
Movimentacao de Materiais
Movimentacao de MateriaisMovimentacao de Materiais
Movimentacao de Materiais
 
Gestão de compras e Compras no serviço público
Gestão de compras e Compras no serviço públicoGestão de compras e Compras no serviço público
Gestão de compras e Compras no serviço público
 
Gestão 3 - Mecânica - Aula 01
Gestão 3 - Mecânica - Aula 01Gestão 3 - Mecânica - Aula 01
Gestão 3 - Mecânica - Aula 01
 
INTRODUÇÃO À LOGÍSTICA
INTRODUÇÃO À LOGÍSTICAINTRODUÇÃO À LOGÍSTICA
INTRODUÇÃO À LOGÍSTICA
 
Administração de Recursos Materiais.
Administração de Recursos Materiais.Administração de Recursos Materiais.
Administração de Recursos Materiais.
 
Logística Introdução.pptx
Logística Introdução.pptxLogística Introdução.pptx
Logística Introdução.pptx
 
ISO9001
ISO9001ISO9001
ISO9001
 
AUTOMOTIVE INDUSTRY DESIGN A WAREHOUSE , LAYOUT,LOCATION
AUTOMOTIVE INDUSTRY DESIGN A WAREHOUSE ,  LAYOUT,LOCATIONAUTOMOTIVE INDUSTRY DESIGN A WAREHOUSE ,  LAYOUT,LOCATION
AUTOMOTIVE INDUSTRY DESIGN A WAREHOUSE , LAYOUT,LOCATION
 
ZERO DEFECTS
ZERO DEFECTSZERO DEFECTS
ZERO DEFECTS
 
Modais de transporte
Modais de transporteModais de transporte
Modais de transporte
 

Similar to Learn Java in 2 days

Principled And Clean Coding
Principled And Clean CodingPrincipled And Clean Coding
Principled And Clean CodingMetin Ogurlu
 
Working With Concurrency In Java 8
Working With Concurrency In Java 8Working With Concurrency In Java 8
Working With Concurrency In Java 8Heartin Jacob
 
FRONTEND BOOTCAMP Session 2.pptx
FRONTEND BOOTCAMP Session 2.pptxFRONTEND BOOTCAMP Session 2.pptx
FRONTEND BOOTCAMP Session 2.pptxEhtesham46
 
Java+8-New+Features.pdf
Java+8-New+Features.pdfJava+8-New+Features.pdf
Java+8-New+Features.pdfgurukanth4
 
Core Java Basics
Core Java BasicsCore Java Basics
Core Java BasicsFayis-QA
 
What To Leave Implicit
What To Leave ImplicitWhat To Leave Implicit
What To Leave ImplicitMartin Odersky
 
2CPP09 - Encapsulation
2CPP09 - Encapsulation2CPP09 - Encapsulation
2CPP09 - EncapsulationMichael Heron
 
SOLID Design Principles for Test Automaion
SOLID Design Principles for Test AutomaionSOLID Design Principles for Test Automaion
SOLID Design Principles for Test AutomaionKnoldus Inc.
 
Code reviews
Code reviewsCode reviews
Code reviewsRoger Xia
 
Java interview questions 1
Java interview questions 1Java interview questions 1
Java interview questions 1Sherihan Anver
 
Angularjs for kolkata drupal meetup
Angularjs for kolkata drupal meetupAngularjs for kolkata drupal meetup
Angularjs for kolkata drupal meetupGoutam Dey
 
Android webinar class_java_review
Android webinar class_java_reviewAndroid webinar class_java_review
Android webinar class_java_reviewEdureka!
 
2CPP11 - Method Overloading
2CPP11 - Method Overloading2CPP11 - Method Overloading
2CPP11 - Method OverloadingMichael Heron
 

Similar to Learn Java in 2 days (20)

Principled And Clean Coding
Principled And Clean CodingPrincipled And Clean Coding
Principled And Clean Coding
 
Core java
Core javaCore java
Core java
 
Core java
Core javaCore java
Core java
 
Working With Concurrency In Java 8
Working With Concurrency In Java 8Working With Concurrency In Java 8
Working With Concurrency In Java 8
 
FRONTEND BOOTCAMP Session 2.pptx
FRONTEND BOOTCAMP Session 2.pptxFRONTEND BOOTCAMP Session 2.pptx
FRONTEND BOOTCAMP Session 2.pptx
 
Java+8-New+Features.pdf
Java+8-New+Features.pdfJava+8-New+Features.pdf
Java+8-New+Features.pdf
 
Core Java Basics
Core Java BasicsCore Java Basics
Core Java Basics
 
What To Leave Implicit
What To Leave ImplicitWhat To Leave Implicit
What To Leave Implicit
 
2CPP09 - Encapsulation
2CPP09 - Encapsulation2CPP09 - Encapsulation
2CPP09 - Encapsulation
 
DAA Unit 1.pdf
DAA Unit 1.pdfDAA Unit 1.pdf
DAA Unit 1.pdf
 
SOLID Design Principles for Test Automaion
SOLID Design Principles for Test AutomaionSOLID Design Principles for Test Automaion
SOLID Design Principles for Test Automaion
 
Code reviews
Code reviewsCode reviews
Code reviews
 
Java interview questions 1
Java interview questions 1Java interview questions 1
Java interview questions 1
 
Design p atterns
Design p atternsDesign p atterns
Design p atterns
 
Angularjs
AngularjsAngularjs
Angularjs
 
Angularjs for kolkata drupal meetup
Angularjs for kolkata drupal meetupAngularjs for kolkata drupal meetup
Angularjs for kolkata drupal meetup
 
Object Oriented Programming
Object Oriented ProgrammingObject Oriented Programming
Object Oriented Programming
 
Android webinar class_java_review
Android webinar class_java_reviewAndroid webinar class_java_review
Android webinar class_java_review
 
2CPP11 - Method Overloading
2CPP11 - Method Overloading2CPP11 - Method Overloading
2CPP11 - Method Overloading
 
java.pptx
java.pptxjava.pptx
java.pptx
 

Recently uploaded

Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024Janet Corral
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 

Recently uploaded (20)

Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 

Learn Java in 2 days

  • 1. Learn Java in 2 days By Ahmed Ali Ali © 2013 Email : ahmed14ghaly@gmail.com a14a2a1992a@yahoo.com By Ahmed Ali Ali © 2013 1
  • 2. Agenda First day Second day (soon) •Introduction •Class •File Declarations & Modifiers •Wrapper Classes •Handling I/O •inner class Exceptions •Threads •Collections •immutable •StringBuffer, and •Tokenizing •Quiz StringBuilder •Utility Classes: Collections and Arrays •Generics •Quiz By Ahmed Ali Ali © 2013 2
  • 3. Introduction • Java is an object-oriented programming language . • Java was started as a project called "Oak" by James Gosling in June1991. Gosling's goals were to implement a virtual machine and a language that had a familiar Clike notation but with greater uniformity and simplicity than C/C++. The first public implementation was Java 1.0 in 1995 • The language itself borrows much syntax from C and C++ but has a simpler object model and fewer low-level facilities. • Java Is Easy to Learn By Ahmed Ali Ali © 2013 3
  • 4. Complete List of Java Keywords By Ahmed Ali Ali © 2013 4
  • 5. My First Java Program By Ahmed Ali Ali © 2013 5
  • 6. Class Declarations • Source File Declaration Rules o only one public class per source code file. o A file can have more than one nonpublic class. o If there is a public class in a file, the name of the file must match the name of the public class. o If the class is part of a package, the package statement must be the first line in the source code file, before any import statements that may be present o import and package statements apply to all classes within a source code file. By Ahmed Ali Ali © 2013 6
  • 7. Class Access(Class Modifiers) • What • does it mean to access a class? Class Modifiers o Public Access o Default Access • package cert; Public class Beverage { } package cert; class Beverage { } Other (Non access) Class Modifiers o Final Classes package cert; Final class Beverage { } o Abstract Classes package cert; Abstract class Beverage { } By Ahmed Ali Ali © 2013 7
  • 8. Declare Interfaces • An interface must be declared with the keyword interface. • All interface methods are implicitly public and abstract. In other words, you do not need to actually type the public or abstract . • Interface methods must not be static. • Because interface methods are abstract, they cannot be marked final, • All variables defined in an interface must be public, static, and final. • An interface can extend one or more other interfaces. • An interface cannot implement another interface or class. By Ahmed Ali Ali © 2013 8
  • 9. Declare Class Members •We've looked at what it means to use a modifier in a class declaration, and now we'll look at what it means to modify a method or variable declaration. • Access o o o o • Modifiers public protected default private Nonaccess Member Modifiers o Final and abstract o Synchronized methods By Ahmed Ali Ali © 2013 9
  • 10. Determining Access to Class Member By Ahmed Ali Ali © 2013 10
  • 11. Develop Constructors • The • constructor name must match the name of the class. If you don't type a constructor into your class code, a default constructor will be automatically generated by the compiler. • Constructors must not have a return type. • Constructors can use any access modifier, • Every class, including abstract classes, MUST have a constructor. • constructors are invoked at runtime when you say new on some class. By Ahmed Ali Ali © 2013 11
  • 12. Variable Declarations • There are two types of variables in Java: o Primitives : A primitive can be one of eight types: char, boolean, byte, short, int, long, double, or float. Once a primitive has been declared, its primitive type can never change, although in most cases its value can change. o Reference variables : A reference variable is used to refer to (or access) an object. A reference variable is declared to be of a specific type and that type can never be changed. • Note : o It is legal to declare a local variable with the same name as an instance variable; this is called "shadowing." By Ahmed Ali Ali © 2013 12
  • 13. Variable Scope By Ahmed Ali Ali © 2013 13
  • 14. if and switch Statements • The • only legal expression in an if statement is a boolean expression. Curly braces are optional for if blocks that have only one conditional statement. • switch statements can evaluate only to enums or the byte, short, int, and char data types.You can't say, By Ahmed Ali Ali © 2013 14
  • 15. Ternary (Conditional Operator) Returns one of two values based on whether a boolean expression is true or false. • • Returns the value after the ? if the expression is true. • Returns the value after the : if the expression is false. x = (boolean expression) ? value to assign if true : value to assign if false By Ahmed Ali Ali © 2013 15
  • 16. String Concatenation Operator • If either operand is a String, the + operator concatenates the operands. • If both operands are numeric, the + operator adds the operands. By Ahmed Ali Ali © 2013 16
  • 17. Overloading & Overriding • Abstract methods must be overridden by the first concrete (subclass). • final methods cannot be overridden. • Only inherited methods may be overridden, and remember that private methods are not inherited. •A subclass uses super. overriddenMethodName() to call the superclass version of an overridden method. • Object type (not the reference variable's type), determines which overridden method is used at runtime. By Ahmed Ali Ali © 2013 17
  • 18. Overloading & Overriding (cont’) • Methods from a superclass can be overloaded in a subclass. • constructors can be overloaded but not overridden. • Overloading means reusing a method name, but with different arguments. • Overloaded methods. o Must have different argument lists o May have different return types, if argument lists are also different o May have different access modifiers o May throw different exceptions • Polymorphism applies to overriding, not to overloading. • Reference type determines which overloaded method will be used at compile time. By Ahmed Ali Ali © 2013 18
  • 19. Stack and Heap—Quick Review • understanding the basics of the stack and the heap makes it far easier to understand topics like argument passing, threads, exceptions, • Instance variables and objects live on the heap. • Local variables live on the stack. By Ahmed Ali Ali © 2013 19
  • 20. Wrapper Classes •What’s consept of Wrapper Class ? •The wrapper classes correlate to the primitive types •The three most important method families are o xxxValue() Takes no arguments, returns a primitive o parseXxx() Takes a String, returns a primitive o valueOf() Takes a String, returns a wrapped object By Ahmed Ali Ali © 2013 20
  • 21. Handling Exceptions • The term "exception" means "exceptional condition" and is an occurrence that alters the normal program flow. • Exception handling allows developers to detect errors easily without writing special code to test return values. •A bunch of things can lead to exceptions, including hardware failures, resource exhaustion, and good old bugs. When an exceptional event occurs in Java, an exception is said to be "thrown." The code that's responsible for doing something about the exception is called an "exception handler," and it "catches" the thrown exception. By Ahmed Ali Ali © 2013 21
  • 22. Handling Exceptions (cont’) Example : By Ahmed Ali Ali © 2013 22
  • 23. Assertion Mechanism • the assertion mechanism, added to the language with version 1.4, gives you a way to do testing and debugging checks on conditions you expect to smoke out while developing, • writing code with assert statement will help you to be better programmer and improve quality of code, yes this is true based on my experience when we write code using assert statement we think through hard, we think about possible input to a function, we think about boundary condition which eventually result in better discipline and quality code. "If" is a conditional operator with a specific loop syntax. It can be followed with the loop continuation syntax "else". The "Assert" keyword will throw a run-time error if the condition of the loop returns 'false' and is used for conditional validation(parameter checking). Assertions are mainly used to debug code and are generally removed in a live product. Both "If" & "Assert" evaluate a Boolean condition. • By Ahmed Ali Ali © 2013 23
  • 24. Assertion Mechanism Use assertions for internal logic checks within your code, and normal exceptions for error conditions outside your immediate code's control. Really simple: private void doStuff() { assert (y > x); // more code assuming y //is greater than x } Simple: private void doStuff() { assert (y > x): "y is " + y + " x is " + x; // more code assuming y is greater than x } By Ahmed Ali Ali © 2013 24
  • 25. immutable • an immutable object is an object whose state cannot be modified after it is created •Strings Are Immutable Objects By Ahmed Ali Ali © 2013 25
  • 26. StringBuffer, and StringBuilder • The java.lang.StringBuffer and java.lang.StringBuilder classes should be used when you have to make a lot of modifications to strings of characters • StringBuilder is not thread safe. In other words, its methods are not synchronized. • StringBuilder runs faster. By Ahmed Ali Ali © 2013 26
  • 27. Dates, Numbers, and Currency • Here are the date related classes you'll need to understand. o java.util.Date o java.util.Calendar o java.text.DateFormat o java.text.NumberFormat o java.util.Locale By Ahmed Ali Ali © 2013 27
  • 28. Dates, Numbers, and Currency (cont’) By Ahmed Ali Ali © 2013 28
  • 29. Dates, Numbers, and Currency (cont’) By Ahmed Ali Ali © 2013 29
  • 30. A Search Tutorial • To find specific pieces of data in large data sources, Java provides several mechanisms that use the concepts of regular expressions (Regex). Simple Searches we'd like to search through the following source String (abaaaba) for all occurrences (or matches) of the expression (ab) . • What the result if we search on (aba) inside the String (abababa) ? By Ahmed Ali Ali © 2013 30
  • 31. A Search Tutorial (cont’) [abc] Searches only for a's, b's or c's [a-f] Searches only for a, b, c, d, e, or f characters d A digit s A whitespace character w A word character (letters, digits, or "_" (underscore)) the quantifier that represents "one or more" is the "+" (Ex. d+) Example : source: "a 1 56 _Z" index: 012345678 pattern: w In this case will return positions 0, 2, 4, 5, 7, and 8. By Ahmed Ali Ali © 2013 31
  • 32. Tokenizing • Tokenizing is the process of taking big pieces of source data, breaking them into little pieces, and storing the little pieces in variables. Tokens and Delimiters source: "ab,cd5b,6x,z4" If we say that our delimiter is a comma, then our four tokens would be ab cd5b 6x z4 By Ahmed Ali Ali © 2013 32
  • 33. Tokenizing (cont’) Tokenizing with String.split() By Ahmed Ali Ali © 2013 33
  • 34. Quiz By Ahmed Ali Ali © 2013 34
  • 35. Questions By Ahmed Ali Ali © 2013 35
  • 36. Thanks By Ahmed Ali Ali © 2013 36