Download presentation
Presentation is loading. Please wait.
Published byCornelius Tucker Modified over 9 years ago
2
C OMP 110 M AIN & C ONSOLE I NPUT Instructor: Sasa Junuzovic
3
2 P REREQUISITES Loops Static State Types Char String.
4
3 R EMOVING T RAINING W HEELS Compiler ALoanPair Source Code ALoanPair Object (byte) Code Notepad creates reads writes Interpreter calls ObjectEditor main instantiates getTotalLoan() calls ALoanPairInstance MainClass Object Code MainClass Source Code
5
4 M AIN & C ONSOLE I NPUT Programming without ObjectEditor Main Class Programmer-Defined Overloading Console Input Programmer-Defined Library Class
6
5 H ELLO W ORLD
7
6 public class AHelloWorldGreeter { public static void main (String[] args) { System.out.println ("Hello World"); } main header List of user-supplied arguments
8
7 M AIN A RGUMENTS
9
8 public class AnArgPrinter { public static void main (String[] args) { System.out.println (args[0]); } args[0] args[1] 1 st Argument 2 nd Argument … …
10
9 M AIN A RGUMENTS public class AnArgPrinter { public static void main (String[] args) { System.out.println (args[0]); } Program refers to argument User does not supply argument Exception
11
10 S TRING I NPUT
12
11 S TRING I NPUT import java.io.BufferedReader; import java.io.InputStreamReader; public class AnInputPrinter { public static void main (String[] args) { System.out.println("Please enter the line to be printed"); System.out.println ("The input was: " + readString()); } }
13
12 R EADING A S TRING static BufferedReader inputStream = new BufferedReader(new InputStreamReader(System.in)); public static String readString() { try { return inputStream.readLine(); } catch (Exception e) { System.out.println(e); return ""; } Wait for the user to enter a string (of digits) on the next line In case the user terminates input before entring a string, return “” and print an error message
14
13 S TRING I NPUT import java.io.BufferedReader; import java.io.InputStreamReader; public class AnInputPrinter { public static void main (String[] args) { System.out.println("Please enter the line to be printed"); System.out.println ("The input was: " + readString()); } static BufferedReader inputStream = new BufferedReader( new InputStreamReader(System.in)); public static String readString() { try { return inputStream.readLine(); } catch (Exception e) { System.out.println(e); return ""; } Global variables referred to by static readString must be static static main() can call only static methods
15
14 I MPORTING A P ACKAGE public class AnInputPrinter { … new BufferedReader (System.in) … } public class AnInputPrinter { … new java.io. BufferedReader (System.in) … } package java.io; public class BufferedReader { …. } Short name Full name import java.io. BufferedReader ; Import declaration
16
15 T RY -C ATCH B LOCK try { return inputStream.readLine(); } catch (Exception e) { System.out.println(e); return ""; } Program fragment that can cause an exception Exception handlerException object
17
16 I NTEGER I NPUT
18
17 I NTEGER I NPUT import java.io.BufferedReader; import java.io.InputStreamReader; public class AnInputSquarer { public static void main (String[] args) { System.out.println("Please enter the integer to be squared:"); int num = readInt(); System.out.println ("The square is: " + num*num); }
19
18 READ I NT () Wait for the user to enter a string (of digits) on the next line Return the int represented by the string In case the user makes an error or terminates input before entring a valid int, return 0 and print an error message public static int readInt() { try { return Integer.parseInt(inputStream.readLine()); } catch ( Exception e) { System.out.println(e); return 0; }
20
19 READ I NT () Wait for the user to enter a string (of digits) on the next line Return the int represented by the string In case the user makes an error or terminates input before entring a valid int, return 0 and print an error message static BufferedReader inputStream = new BufferedReader( new InputStreamReader(System.in)); public static int readInt() { try { return new Integer(inputStream.readLine()).intValue(); } catch ( Exception e) { System.out.println(e); return 0; } Less efficient and not clear that parsing occurs
21
20 I NTEGER I NPUT import java.io.BufferedReader; import java.io.InputStreamReader; public class AnInputSquarer { public static void main (String[] args) { System.out.println("Please enter the integer to be squared:"); int num = readInt(); System.out.println ("The square is: " + num*num); } static BufferedReader inputStream = new BufferedReader( new InputStreamReader(System.in)); public static int readInt() { try { return Integer.parseInt(inputStream.readLine()); } catch (Exception e) { System.out.println(e); return 0; }
22
21 R EADING O THER P RIMITIVE V ALUES new Double (inputStream.readLine()).doubleValue()); new Boolean (inputStream.readLine()).booleanValue()); new T (inputStream.readLine()).tValue()); General pattern for reading primitive value of type t
23
22 P AUSING A P ROGRAM TO V IEW O UTPUT IN AN I NTERACTIVE P ROGRAMMING E NVIRONMENT
24
23 P AUSING A P ROGRAM TO V IEW O UTPUT IN AN I NTERACTIVE P ROGRAMMING E NVIRONMENT public class AHelloWorldGreeterWithPause { public static void main (String[] args) { System.out.println ("Hello World"); pause(); } public static void pause() { try { System.in.read(); } catch (Exception e) { } Wait for the user to enter a character and return it Legal?
25
24 public static void pause() { try { 5 + 3; } catch (Exception e) { System.out.println( System.out.println(“hello”)); } E XPRESSION VS. S TATEMENT Expression cannot be used as statement Statement cannot be used as expression
26
25 F OUR K INDS OF M ETHODS public void setWeight (double newVal) { weight = newVal; } public static double calculatBMI( double weight, double height) { return weight/(height*height); } public int getWeight() { return weight; } public static int readNextNumber() { System.out.println(”Next Number:"); return Console.readInt(); } procedure functionpure function setWeight(70); calculateBMI(70, 1.77) … 24.57 getWeight() 70 setWeight(77) getWeight() 77 impure function getWeight() 77 5 4 1 readNextNumber () 5 readNextNumber () 4 impure function with side effects
27
26 S IDE E FFECTS public int getWeight() { System.out.println(“get Weight called” ); return weight; } public static int readNextNumber() { System.out.println(”Next Number:"); return new Console.readInt(); } public int increment() { counter++; return counter; } Effect other than computing the return value Printing something Reading input Changing global variable
28
27 A LTERNATIVE TO C HANGING A G LOBAL V ARIABLE public int increment() { counter++; return counter; } public void incrementCounter() { counter++; } public int getCounter() { return counter; }
29
28 F UNCTION C ALLS Can be used as expression Can be used as statement When return value is to be ignored Rarely happens Check program to see all return values being used as expressions Other expressions not statements Procedure calls never expressions
30
29 P AUSING A P ROGRAM TO V IEW O UTPUT IN AN I NTERACTIVE P ROGRAMMING E NVIRONMENT public class AHelloWorldGreeterWithPause { public static void main (String[] args) { System.out.println ("Hello World"); pause(); } public static void pause() { try { System.in.read(); } catch (Exception e) { } Legal expression and statement We do not care about the return value
31
30 S EPARATE C LASS Console readIntpause readDoublereadBoolean readCharreadString
32
31 S EPARATE C LASS FOR I NPUT import java.io.BufferedReader; import java.io.InputStreamReader; public class Console { static BufferedReader inputStream = new BufferedReader( new InputStreamReader(System.in)); public static int readInt() { try { return Integer.parseInt(inputStream.readLine()); } catch (Exception e) { System.out.println(e); return 0; } public static String readString() { try { return inputStream.readLine(); } catch (Exception e) { System.out.println(e); return ""; }... //other methods }
33
32 W ITHOUT C ONSOLE import java.io.BufferedReader; import java.io.InputStreamReader; public class AnInputPrinter { public static void main (String[] args) { System.out.println("Please enter the line to be printed"); System.out.println ("The input was: " + readString()); } static BufferedReader inputStream = new BufferedReader(new InputStreamReader(System.in)); public static String readString() { try { return inputStream.readLine(); } catch (Exception e) { System.out.println(e); return ""; }
34
33 U SING C ONSOLE public class AnInputPrinter { public static void main (String[] args) { System.out.println("Please enter the line to be printed"); System.out.println ("The input was: " + Console.readString()); }
35
34 S EPARATION OF C ONCERNS Make independent piece of code as separate method Make independent set of methods as separate class Use operation and data abstraction!
36
35 M ULTIPLE I NTEGER I NPUT
37
36 M ULTIPLE I NTEGER I NPUT public class AnInputSummer { public static void main (String[] args) { System.out.println( "Please enter the numbers to be added on separate lines:"); System.out.println ( "Their sum is: " + (Console.readInt() + Console.readInt())); }
38
37 M ULTIPLE I NTEGER I NPUT Entire line read as string and then parsed as int
39
38 C OMPUTING P OLAR C OORDINATES
40
39 C OMPUTING P OLAR C OORDINATES public class AMonolithicPolarCoordinatesComputer { public static void main (String args[]) { int x = readX(); int y = readY(); print (x, y, Math.sqrt(x*x + y*y), Math.atan(y/x)); Console.pause(); } public static int readX() { System.out.println("Please enter x coordinate:"); return Console.readInt(); } public static int readY() { System.out.println("Please enter y coordinate:"); return Console.readInt(); } public static void print( int x, int y, double radius, double angle) { System.out.println("radius: " + radius); System.out.println("angle: " + angle); } Not reusing previous implementation
41
40 C OMPUTING P OLAR C OORDINATES public class APolarCoordinatesComputer { public static void main (String args[]) { print(readPoint()); Console.pause(); } public static Point readPoint() { System.out.println("Please enter x coordinate:"); int x = Console.readInt(); System.out.println("Please enter y coordinate:"); return new ACartesianPoint(x, Console.readInt()); } public static void print(Point p) { /* System.out.println("x: " + p.getX()); System.out.println("y: " + p.getY()); */ System.out.println("radius: " + p.getRadius()); System.out.println("angle: " + p.getAngle()); } Reusing previous implementation
42
41 E QUIVALENT U SER I NTERFACES
43
42 E QUIVALENT U SER I NTERFACES
44
43 A LGORITHM ( EDIT )
45
44 A LGORITHM Create ALoanPair instance based on the two values entered by the user in the console window Print the properties of the loan pair object in the console window
46
45 M AIN M ETHOD public static void main (String[] args) { LoanPair loanPair = new ALoanPair( readCarLoan(), readHouseLoan()); print(loanPair); bus.uigen.ObjectEditor.edit(loanPair); pause(); } Method chaining
47
46 M AIN M ETHOD W ITHOUT M ETHOD C HAINING public static void main (String[] args) { Loan carLoan = readCarLoan(); Loan houseLoan = readHouseLoan(); LoanPair loanPair = new ALoanPair(carLoan, houseLoan); print (loanPair); bus.uigen.ObjectEditor.edit(loanPair); pause(); } Undefined
48
47 READ C AR L OAN ()
49
48 READ C AR L OAN () Prompt user Return an instance of ALoan constructed from the principal public static Loan readCarLoan() { System.out.println("Please enter car principal:"); return new ALoan(Console.readInt()); }
50
49 P RINTING A L OAN P AIR
51
50 P RINTING A L OAN P AIR public static void print (LoanPair loanPair) { System.out.println("****Car Loan*****"); print(loanPair.getCarLoan()); System.out.println("****House Loan****"); print(loanPair.getHouseLoan()); System.out.println("****Total Loan****"); print(loanPair.getTotalLoan()); } public static void print (Loan loan) { System.out.println("Principal:" + loan.getPrincipal()); System.out.println("Yearly Interest:" + loan.getYearlyInterest()); System.out.println("Monthly Interest:" + loan.getMonthlyInterest()); } Programmer-defined overloading
52
51 O BJECT E DITOR. EDIT bus.uigen.ObjectEditor.edit(loanPair); Displays an edit window for the object passed as parameter Full name of the ObjectEditor class
53
52 C LASS -L EVEL D ECOMPOSITION Monolithic Main Class (Loan User Interface and Loan Computation) ObjectEditor Programmer-defined Class (ALoanPair) Programmer-defined Class (ALoanPair) Driver (ALoanPairDriver) Driver (ALoanPairDriver)
54
53 M ULTI -L EVEL A LGORITHM /C ODE main readCarLoanreadHouseLoanprint(LoanPair)Console.pause Console.readIntprint(Loan)
55
54 R UNNING M AIN
56
55 I NSERTING A B REAK P OINT
57
56 S INGLE -S TEPPING
58
57 S TEP I NTO VS. S TEP O VER
59
58 I NSPECTING V ARIABLES
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.