Download PPT - University of Maryland at College Park

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Abstraction (computer science) wikipedia , lookup

Scala (programming language) wikipedia , lookup

Corecursion wikipedia , lookup

K-nearest neighbors algorithm wikipedia , lookup

Coding theory wikipedia , lookup

Error detection and correction wikipedia , lookup

Object-oriented programming wikipedia , lookup

Java (programming language) wikipedia , lookup

Structured programming wikipedia , lookup

Falcon (programming language) wikipedia , lookup

Control flow wikipedia , lookup

Covariance and contravariance (computer science) wikipedia , lookup

C syntax wikipedia , lookup

Java syntax wikipedia , lookup

Design Patterns wikipedia , lookup

Class (computer programming) wikipedia , lookup

Name mangling wikipedia , lookup

Java performance wikipedia , lookup

Go (programming language) wikipedia , lookup

C++ wikipedia , lookup

Iterator wikipedia , lookup

C Sharp (programming language) wikipedia , lookup

C Sharp syntax wikipedia , lookup

Transcript
CMSC 132:
Object-Oriented Programming II
Java Constructs
Department of Computer Science
University of Maryland, College Park
Overview
Autoboxing
Enumerated Types
Iterator Interface
Enhanced for loop
Scanner class
Exceptions
Streams
Autoboxing & Unboxing
Automatically convert primitive data types
Data value  Object (of matching class)
Data types & classes converted
Boolean, Byte, Double, Short, Integer, Long, Float
Example
See SortValues.java
Enumerated Types
New type of variable with set of fixed values
Establishes all possible values by listing them
Supports values(), valueOf(), name(), compareTo()…
Can add fields and methods to enums
Example
public enum Color { Black, White } // new enumeration
Color myC = Color.Black;
for (Color c : Color.values()) System.out.println(c);
When to use enums
Natural enumerated types – days of week, phases of
the moon, seasons
Sets where you know all possible values
Enumerated Types
The following example is from the presentation "Taming the Tiger" by Joshua
Bloch and Neal Gafter that took place at Sun's 2004 Worldwide Java Developer
Conference.
Example
public class Card implements Serializable {
public enum Rank {DEUCE, THREE, FOUR, FIVE, SIX,
SEVEN, EIGHT, NINE, TEN, JACK, QUEEN, KING, ACE
}
public enum Suit {CLUBS, DIAMONDS, HEARTS, SPADES}
private final Rank rank;
private final Suit suit;
private Card(Rank rank, Suit suit) {
this.rank = rank;
this.suit = suit;
}
public Rank rank() {return rank;}
public Suit suit() {return suit;}
public String toString() {return rank + " of " + suit;}
}
Iterator Interface
Iterator
Common interface for all Collection classes
Used to examine all elements in collection
Properties
Can remove current element during iteration
Works for any collection
Iterator Interface
Interface
public interface Iterator {
boolean hasNext();
Object next();
void remove(); // optional, called once per next()
}
Example usage
Iterator i = myCollection.iterator();
while (i.hasNext()) {
myCollectionElem x = (myCollectionElem) i.next();
}
Enhanced For Loop
Works for arrays and any class that implements the
Iterable interface.
For loop handles Iterator automatically
Test hasNext(), then get & cast next()
Example 1 // Iterating over a String array
String[] roster = {"John", "Mary", "Peter", "Jackie", "Mark"};
for (String student : roster)
System.out.println(student);
Enhanced For Loop
Example 2
ArrayList<String> roster = new ArrayList<String>();
roster.add("John");
roster.add("Mary");
Iterator it = roster.iterator(); // using an iterator
while (it.hasNext())
System.out.println(it.next());
for (String student : roster)
// using for loop
System.out.println(student);
Standard Input/Output
Standard I/O
Provided in System class in java.lang
System.in
An instance of InputStream
System.out
An instance of PrintStream
System.err
An instance of PrintStream
Scanner class
Scanner
Allow us to read primitive type and strings from the
standard input
Example
See ScannerExample.java
In the example notice the use of printf
Exception Handling
Performing action in response to exception
Example actions
Ignore exception
Print error message
Request new data
Retry action
Approaches
1. Exit program
2. Exit method returning error code
3. Throw exception
Representing Exceptions
Java Exception class hierarchy
Two types of exceptions  checked & unchecked
Representing Exceptions
Java Exception class hierarchy
ClassNotFoundException
Exception
CloneNotSupportedException
IOException
ArithmeticException
AWTException
NullPointerException
RuntimeException
Object
IndexOutOfBoundsException
Throwable
…
NoSuchElementException
LinkageError
VirtualMachoneError
…
Error
AWTError
Checked
…
Unchecked
Unchecked Exceptions
Class Error & RunTimeException
Serious errors not handled by typical program
Usually indicate logic errors
Example
NullPointerException, IndexOutOfBoundsException
Catching unchecked exceptions is optional
Handled by Java Virtual Machine if not caught
Checked Exceptions
Class Exception (except RunTimeException)
Errors typical program should handle
Used for operations prone to error
Example
IOException, ClassNotFoundException
Compiler requires “catch or declare”
Catch and handle exception in method, OR
Declare method can throw exception, force calling
function to catch or declare exception in turn
Example
void A( ) throws ExceptionType { … }
Exceptions – Java Primitives
Java primitives
Try
Forms try block
Encloses all statements that may throw exception
Throw
Actually throw exception
Catch
Catches exception matching type
Code in catch block  exception handler
Finally
Forms finally block
Always executed, follows try block & catch code
Exceptions - Syntax
try {
throw new eType1();
}
catch (eType1 e) {
...action...
}
catch (eType2 e) {
...action...
}
finally {
...action...
}
// try block encloses throws
// throw jumps to catch
// catch block 1
// run if type match
// catch block 2
// run if type match
// final block
// always executes