Using Classes and Objects

Similar documents
Using Classes and Objects. Chapter

Using Classes and Objects

CSCI 2010 Principles of Computer Science. Basic Java Programming. 08/09/2013 CSCI Basic Java 1

Using Classes and Objects

Objectives of CS 230. Java portability. Why ADTs? 8/18/14

Chapter 3 Using Classes and Objects

Formatting Output & Enumerated Types & Wrapper Classes

Using Classes and Objects Chapters 3 Creating Objects Section 3.1 The String Class Section 3.2 The Scanner Class Section 2.6

Data Representation Classes, and the Java API

Chapter 3 Using Classes and Objects

Packages & Random and Math Classes

Learning objectives: Objects and Primitive Data. Introduction to Objects. A Predefined Object. The print versus the println Methods

We now start exploring some key elements of the Java programming language and ways of performing I/O

ECE 122. Engineering Problem Solving with Java

ECE 122. Engineering Problem Solving with Java

Chap. 3. Creating Objects The String class Java Class Library (Packages) Math.random() Reading for this Lecture: L&L,

A variable is a name for a location in memory A variable must be declared

COMP 202. Built in Libraries and objects. CONTENTS: Introduction to objects Introduction to some basic Java libraries string

Chapter 4. Mathematical Functions, Characters, and Strings

Selection Statements and operators

CSC 1051 Data Structures and Algorithms I

Selection and Repetition Revisited

Selection Statements and operators

Selection and Repetition

Designing Classes. Where do objects come from? Where do objects come from? Example: Account datatype. Dr. Papalaskari 1

Where do objects come from? Good question!

Introduction to Java (All the Basic Stuff)

Selection and Repetition Revisited

CSC 1051 Data Structures and Algorithms I. Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University

Introduction to Arrays

CSC 1051 Data Structures and Algorithms I. Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University

2: Basics of Java Programming

CS101 Algorithms and Programming I

Selection and Repetition

CSC 1051 Villanova University. CSC 1051 Data Structures and Algorithms I. Course website:

CSC 1051 Data Structures and Algorithms I

CSC 1051 Algorithms and Data Structures I. Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University

Object-Based Programming. Programming with Objects

Java Basic Introduction, Classes and Objects SEEM

Java I/O and Control Structures Algorithms in everyday life

Java Bootcamp - Villanova University. CSC 2014 Java Bootcamp. Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University

Java I/O and Control Structures

CSC 1051 Data Structures and Algorithms I

CSC 1051 Algorithms and Data Structures I. Midterm Examination October 7, Name:

Java Basic Introduction, Classes and Objects SEEM

Computational Expression

Algorithms and Java basics: pseudocode, variables, assignment, and interactive programs

CSC 1051 Algorithms and Data Structures I. Midterm Examination October 6, Name:

CSC 1051 Algorithms and Data Structures I. Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University

Algorithms and Java basics: pseudocode, variables, assignment, and interactive programs

Algorithms in everyday life. Algorithms. Algorithms and Java basics: pseudocode, variables, assignment, and interactive programs

Name: Checked: Access the Java API at the link above. Why is it abbreviated to Java SE (what does the SE stand for)?

Name: Checked: Access the Java API at the link above. Why is it abbreviated to Java SE (what does the SE stand for)?

I/O Streams. program. Standard I/O. File I/O: Setting up streams from files. program. File I/O and Exceptions. Dr. Papalaskari 1

CSC 1051 Algorithms and Data Structures I. Midterm Examination February 25, Name: KEY A

Chapter. Let's explore some other fundamental programming concepts

File I/O and Exceptions

Designing Classes. Where do objects come from? Where do objects come from? Example: Account datatype. Dr. Papalaskari 1

AP Computer Science Unit 1. Writing Programs Using BlueJ

Classes and Objects Part 1

ECE 122. Engineering Problem Solving with Java

Algorithms and Conditionals

Arrays, Part 3: Multidimensional arrays

class declaration Designing Classes part 2 Getting to know classes so far Review Next: 3/18/13 Driver classes:

Lecture 3: Variables and assignment

CSC 1051 Data Structures and Algorithms I. Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University

Algorithms in everyday life. Algorithms. Algorithms and Java basics: pseudocode, variables, assignment, and interactive programs

Anatomy of a Class Encapsulation Anatomy of a Method

I/O Streams. program. Standard I/O. File I/O: Setting up streams from files. program. File I/O and Exceptions. Dr. Papalaskari 1

I/O Streams. program. Standard I/O. File I/O: Setting up streams from files. program. File I/O and Exceptions. Dr. Papalaskari 1

AL GHURAIR UNIVERSITY College of Computing. Objectives: Examples: Text-printing program. CSC 209 JAVA I

Iterators and File Input

AP Computer Science Unit 1. Programs

CSC 1051 Data Structures and Algorithms I. Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University

Chapter 4: Writing Classes

Lab 3: Work with data (IV)

Review Chapters 1 to 4. Instructor: Scott Kristjanson CMPT 125/125 SFU Burnaby, Fall 2013

CSC 1051 Algorithms and Data Structures I. Midterm Examination October 9, Name: KEY

Basics of Java Programming variables, assignment, and input

Improved algorithm. Java code. Control flow and conditionals CSC 1051 Villanova University. Dr Papalaskari 1. Java Programè Algorithm

CSC Algorithms and Data Structures I. Midterm Examination February 25, Name:

Java code. Updated program. Control flow and conditionals CSC 1051 Villanova University. Dr Papalaskari 1. Java Programè Algorithm. Improved algorithm

Designing Classes part 2

Constants. Why Use Constants? main Method Arguments. CS256 Computer Science I Kevin Sahr, PhD. Lecture 25: Miscellaneous

Welcome to the Using Objects lab!

Control flow, conditionals, boolean expressions, block statements, nested statements. Course website:

Chapter 4 Classes in the Java Class Libraries

Java Libraries. Lecture 6 CGS 3416 Fall September 21, 2015

CS111: PROGRAMMING LANGUAGE II

Method OverLoading printf method Arrays Declaring and Using Arrays Arrays of Objects Array as Parameters

Class API. Class API. Constructors. CS200: Computer Science I. Module 19 More Objects

Introduction to Java Unit 1. Using BlueJ to Write Programs

CSC 1051 Algorithms and Data Structures I. Midterm Examination March 1, Name: KEY A

Assignment 1 due Monday at 11:59pm

AP Computer Science Unit 1. Writing Programs Using BlueJ

CSC 1051 Algorithms and Data Structures I. Midterm Examination February 26, Name: Key

Chapter. We've been using predefined classes. Now we will learn to write our own classes to define objects

Arrays - Review. Initializer Lists. The for-each Loop. Arrays, Part 2. Dr. Papalaskari 1. CSC 1051 Data Structures and Algorithms I

CSC 1051 Algorithms and Data Structures I. Midterm Examination March 2, Name:

CompSci 125 Lecture 05. Programming Style, String Class and Literals, Static Methods, Packages

Transcription:

Using Classes and Objects CSC 1051 Data Structures and Algorithms I Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University Course website: www.csc.villanova.edu/~map/1051/

Today Creating Objects The String Class The Random and Math Classes The Java API class library

Declaring Variables, revisited Examples of variable declarations: int count = 0; double mpg; String title; Graphics page; Color aquamarine; Scanner scan; A class name can be used as a type to declare an object reference variable The object itself must be created separately

Creating Objects We have already seen something like this: Scanner scan = new Scanner (System.in); This calls the Scanner constructor, which is a special method that sets up the object Variable refers to a Scanner object

Creating Objects Generally, we use the new operator to create an object Creating an object is called instantiation An object is an instance of a particular class title = new String ("Java Software Solutions"); This calls the String constructor, which is a special method that sets up the object

The String Class is SPECIAL! Because strings are so common, we don't have to use the new operator to create a String object title = "Java Software Solutions" This is special syntax that works only for strings Each string literal (enclosed in double quotes) represents a String object

Invoking Methods We've seen that once an object has been instantiated, we can use the dot operator to invoke its methods ans = scan.nextline(); numchars = title.length(); Jargon alert: A method invocation can be thought of as asking an object to perform a service

Chapter 3: Using Classes and Objects We can create more interesting programs using predefined classes and related objects Chapter 3 focuses on: object creation and object references the String class and its methods the Java API class library the Random and Math classes formatting output enumerated types wrapper classes graphical components and containers labels and images

Next Creating Objects The String Class The Random and Math Classes The Java API class library

String Indexes The characters in a string are indexed by their position. "Hello" Position 0 Position 4

Example: Using String methods String a = "stuff "; String b = a.concat ("more stuff"); String c = a.touppercase(); String d = b.replace ('r', 'v'); String e = b.substring (2, 7); char letter = c.charat(3); int num = a.length(); int comp = a.compareto(b); [a >> b? (use lexicographic order: positive if a>>b, zero if equal, negative if a<<b)] List of some String methods: textbook page 119

//******************************************************************** // StringMutation.java Author: Lewis/Loftus // // Demonstrates the use of the String class and its methods. //******************************************************************** public class StringMutation { //----------------------------------------------------------------- // Prints a string and various mutations of it. //----------------------------------------------------------------- public static void main (String[] args) { String phrase = "Change is inevitable"; String mutation1, mutation2, mutation3, mutation4; continued System.out.println ("Original string: \"" + phrase + "\""); System.out.println ("Length of string: " + phrase.length()); mutation1 = phrase.concat (", except from vending machines."); mutation2 = mutation1.touppercase(); mutation3 = mutation2.replace ('E', 'X'); mutation4 = mutation3.substring (3, 30); See StringMutation.java

continued // Print each mutated string System.out.println ("Mutation #1: " + mutation1); System.out.println ("Mutation #2: " + mutation2); System.out.println ("Mutation #3: " + mutation3); System.out.println ("Mutation #4: " + mutation4); } } System.out.println ("Mutated length: " + mutation4.length()); See StringMutation.java

Output Original string: "Change is inevitable" Length continued of string: 20 Mutation #1: Change is inevitable, except from vending machines. Mutation // #2: Print CHANGE each mutated IS INEVITABLE, string EXCEPT FROM VENDING MACHINES. Mutation System.out.println #3: CHANGX IS INXVITABLX, ("Mutation #1: XXCXPT " + mutation1); FROM VXNDING MACHINXS. Mutation System.out.println #4: NGX IS INXVITABLX, ("Mutation XXCXPT #2: " + F mutation2); Mutated System.out.println length: 27 ("Mutation #3: " + mutation3); System.out.println ("Mutation #4: " + mutation4); } } System.out.println ("Mutated length: " + mutation4.length());

Quick Check What output is produced by the following? String str = "Space, the final frontier."; System.out.println (str.length()); System.out.println (str.substring(7)); System.out.println (str.touppercase()); System.out.println (str.length()); 26 the final frontier. SPACE, THE FINAL FRONTIER. 26

Today Creating Objects The String Class The Random and Math Classes The Java API class library

The Random Class The Random class is part of the java.util package, so we need to import it: import java.util.random; It provides methods that generate pseudorandom numbers

Example: Using Random methods Random rand = new Random(); int a = rand.nextint(); // int range[-2147483648 2147483647] int b = rand.nextint(4); // int range [0,1,2,3] float c = rand.nextfloat(); //float range [0,1) int d = rand.nextint(4) + 1; //random [1,2,3,4] List of some Random methods: page 126 See RandomNumbers.java

Quick Check Given a Random object named gen, what range of values are produced by the following expressions? gen.nextint(25) gen.nextint(6) + 1 gen.nextint(100) + 10 gen.nextint(50) + 100 gen.nextint(10) 5 gen.nextint(22) + 12 Range 0 to 24 1 to 6 10 to 109 100 to 149-5 to 4 12 to 33

//******************************************************************** // RandomNumbers.java Author: Lewis/Loftus // // Demonstrates the creation of pseudo-random numbers using the // Random class. //******************************************************************** import java.util.random; public class RandomNumbers { //----------------------------------------------------------------- // Generates random numbers in various ranges. //----------------------------------------------------------------- public static void main (String[] args) { Random generator = new Random(); int num1; float num2; continued num1 = generator.nextint(); System.out.println ("A random integer: " + num1); num1 = generator.nextint(10); System.out.println ("From 0 to 9: " + num1); See RandomNumbers.java

continued num1 = generator.nextint(10) + 1; System.out.println ("From 1 to 10: " + num1); num1 = generator.nextint(15) + 20; System.out.println ("From 20 to 34: " + num1); num1 = generator.nextint(20) - 10; System.out.println ("From -10 to 9: " + num1); num2 = generator.nextfloat(); System.out.println ("A random float (between 0-1): " + num2); } } num2 = generator.nextfloat() * 6; // 0.0 to 5.999999 num1 = (int)num2 + 1; System.out.println ("From 1 to 6: " + num1); See RandomNumbers.java

continued Sample Run A random integer: 672981683 num1 = generator.nextint(10) + 1; System.out.println From 0 to 9: ("From 0 1 to 10: " + num1); From 1 to 10: 3 num1 = From generator.nextint(15) 20 34: 30 + 20; System.out.println From -10 to ("From 9: -4 20 to 34: " + num1); A random float (between 0-1): 0.18538326 num1 = From generator.nextint(20) 1 6: 3-10; System.out.println ("From -10 to 9: " + num1); num2 = generator.nextfloat(); System.out.println ("A random float (between 0-1): " + num2); } } num2 = generator.nextfloat() * 6; // 0.0 to 5.999999 num1 = (int)num2 + 1; System.out.println ("From 1 to 6: " + num1); See RandomNumbers.java

Quick Check Given a Random object named gen, write an expression that produces a random integer in the following ranges: Range 0 to 12 1 to 20 15 to 20-10 to 0 gen.nextint(13) gen.nextint(20) + 1 gen.nextint(6) + 15 gen.nextint(11) 10

Example: counting snake eyes Random gen = new Random(); int trial = 1, count = 0; // Roll two dice 100,000 times and count how many // times you roll snake eyes, i.e., two 1 s. while (trial < 100000) { } die1 = gen.nextint(6) + 1; die2 = gen.nextint(6) + 1; if (die1 == 1 && die2 == 1) count++; // snake eyes trial++;

The Math Class The Math class contains methods that perform various mathematical functions These include: absolute value square root exponentiation trigonometric functions value = Math.cos(90) + Math.sqrt(delta);

The Math Class is special! The Math class is part of the java.lang package No need to import anything! The methods of the Math class are static methods (also called class methods) Static methods are invoked through the class name Do not need to create a Math object value = Math.cos(90) + Math.sqrt(delta); See Quadratic.java

//******************************************************************** // Quadratic.java Author: Lewis/Loftus // // Demonstrates the use of the Math class to perform a calculation // based on user input. //******************************************************************** import java.util.scanner; public class Quadratic { //----------------------------------------------------------------- // Determines the roots of a quadratic equation. //----------------------------------------------------------------- public static void main (String[] args) { int a, b, c; // ax^2 + bx + c double discriminant, root1, root2; continued Scanner scan = new Scanner (System.in); System.out.print ("Enter the coefficient of x squared: "); a = scan.nextint(); See Quadratic.java

continued System.out.print ("Enter the coefficient of x: "); b = scan.nextint(); System.out.print ("Enter the constant: "); c = scan.nextint(); // Use the quadratic formula to compute the roots. // Assumes a positive discriminant. discriminant = Math.pow(b, 2) - (4 * a * c); root1 = ((-1 * b) + Math.sqrt(discriminant)) / (2 * a); root2 = ((-1 * b) - Math.sqrt(discriminant)) / (2 * a); } } System.out.println ("Root #1: " + root1); System.out.println ("Root #2: " + root2); See Quadratic.java

continued Sample Run Enter the coefficient of x squared: 3 System.out.print ("Enter the coefficient of x: "); b = scan.nextint(); Enter the coefficient of x: 8 Enter the constant: 4 System.out.print Root #1:("Enter -0.6666666666666666 the constant: "); c = scan.nextint(); Root #2: -2.0 // Use the quadratic formula to compute the roots. // Assumes a positive discriminant. discriminant = Math.pow(b, 2) - (4 * a * c); root1 = ((-1 * b) + Math.sqrt(discriminant)) / (2 * a); root2 = ((-1 * b) - Math.sqrt(discriminant)) / (2 * a); } } System.out.println ("Root #1: " + root1); System.out.println ("Root #2: " + root2); See Quadratic.java

Class Libraries A class library is a collection of classes that we can use when developing programs The Java standard class library is part of any Java development environment Its classes are not part of the Java language per se, but we rely on them heavily Various classes we've already used (System, Scanner, String) are part of the Java standard class library

The Java API The Java class library is sometimes referred to as the Java API API stands for Application Programming Interface Clusters of related classes are sometimes referred to as specific APIs: The Swing API The Database API

The Java API Get comfortable navigating the online Java API documentation

Packages For purposes of accessing them, classes in the Java API are organized into packages Package java.lang java.applet java.awt javax.swing java.net java.util javax.xml.parsers Purpose General support Creating applets for the web Graphics and graphical user interfaces Additional graphics capabilities Network communication Utilities XML document processing

The import Declaration Without importing a class, you could use its fully qualified name java.util.scanner Or you can import the class, and then use just the class name import java.util.scanner; Or import all classes in a particular package (use the * wildcard character) import java.util.*;

The import Declaration All classes of the java.lang package are imported automatically into all programs It's as if all programs contain the following line: import java.lang.*; That's why we didn't have to import the System or String classes explicitly in earlier programs The Scanner class, on the other hand, is part of the java.util package, and therefore must be imported

Homework Read Sections 3.1-3.5 Always do all self-review exercises when you review material Do Exercises EX 3.1-3.9 Many of the slides in this presentation are adapted from the slides accompanying Java Software solutions, 7 th edition by Lewis and Loftus. Copyright 2012 Pearson Education, Inc.