Download presentation
Presentation is loading. Please wait.
1
CS 106 Introduction to Computer Science I 02 / 24 / 2010 Instructor: Michael Eckmann
2
Michael Eckmann - Skidmore College - CS 106 - Spring 2010 Today’s Topics Comments and/or Questions? One last comment on multidimensional arrays A few comments about good programming style and programming conventions Math class methods Creating our own methods
3
Multi-dimensional arrays Not only can we have one dimensional, and two dimensional arrays but we can have n dimensional arrays, where n is any positive integer. Example when n=3: double temperatures[][][] = new double [12][31][24]; take a guess as to what might be stored in this array and what the indices mean
4
Multi-dimensional arrays Unfortunately the first index must go from 0 to 11, the second from 0 to 30 and the third from 0 to 23. What if we wanted the index to represent exactly the month (1 to 12), day (1 to 31) and hour (0 to 23)? Is there anything we could do to this line? double temperatures[][][] = new double [12][31][24];
5
Homework/Program Requirements 1) variables should start with a lowercase letter 2) class names should start with an uppercase letter 3) create meaningful variable names that relate to what the variable represents e.g. int height; instead of int a; 4) all programs should have proper indentation and whitespace for readability
6
Homework/Program Requirements 5) when I show you example output, try to make your program produce output as close to that format as possible 6) be careful of case in primitive types, even if you are just writing a sentence about them double is different than Double, also with String type - -- String is the type, not string
7
Math class Let's look at the Java API for the Math class. Specifically these methods: abs – guess what this does. cos, sin, tan ceil – returns smallest whole number >= parameter. pow – takes two parameters – raises first to second and returns the result. random – returns random # in the range: [0.0, 1.0) sqrt Michael Eckmann - Skidmore College - CS 106 - Spring 2010
8
A few more methods in the Math class max ( x, y ) method that returns the larger of x and y min ( x, y ) method that returns the smaller of x and y There are versions of these methods that work for x and y being floats, doubles, ints and longs and return a result that is same type.
9
example calls to static methods in the Math class double w = 5.1, z = 10.56, a, b, c; a = Math.max ( w, z ); // what value would a have? a = Math. max ( z, w ); // what value would a have, now? b = Math. min ( z, w ); c = Math. sqrt ( z );
10
random( ) method in the Math class double rand_num; rand_num = Math.random ( ); // what value might rand_num have after this line of code? // is 0.34452 a possible value? // is 2 a possible value? // is -14.555423 a possible value?
11
random( ) method in the Math class random ( ) returns a double whose value is >= 0 and < 1, but sometimes we want a random integer How might we do that?
12
random( ) method in the Math class random ( ) returns a double whose value is >= 0 and < 1, but sometimes we want a random integer One way to do that is to first multiply the result by some integer to get a value that isn’t necessarily between 0 and 1. Then, cast this new value to an int by using the (int) cast operator.
13
random( ) method in the Math class // example: int some_random_int; double some_random_dbl; some_random_dbl = Math.random ( ) * 25; // this will result in a value >= 0 and < 25. some_random_int = (int) (Math.random ( ) * 25); // what is the range of values for some_random_int here?
14
random( ) method in the Math class int random_card_value; int random_card_suit; random_card_value = 1 + (int) (Math.random ( ) * 13); random_card_suit = (int) (Math.random ( ) * 4); Let’s put this code in a program and execute it.
15
random( ) method in the Math class What if I put the cast to int without using parentheses around the rest of the expression? e.g. random_card_suit = (int) Math.random ( ) * 4;
16
random( ) method in the Math class What if I put the cast to int without using parentheses around the rest of the expression? e.g. random_card_suit = (int) Math.random ( ) * 4; since the cast operator (int) has higher precedence than the multiplication operator *, it would be done first, which means what?
17
random( ) method in the Math class random_card_suit = (int) Math.random ( ) * 4; the Math.random() method call would return a double value and immediately this value would be cast to an int. Casting a double to an int causes the truncation of any decimal portion. Recall that the double that is returned by Math.random() is >= 0.0 and < 1.0 So, what's the possible values of (int) Math.random() ?
18
random( ) method in the Math class (int) Math.random( ) would always be zero.
19
what is a method A method is small piece of a program designed to achieve some specific task and usually returns some piece of information. A method is invoked by a method call. To call a method, you provide its name and the correct arguments that are necessary for the method to execute. Michael Eckmann - Skidmore College - CS 106 - Spring 2010
20
methods Here’s a good analogy of a worker and boss to describe methods and their callers. A boss (the caller) asks a worker (the method that is called) to perform a task (the code in the method) and report (return results) back when the task is done. Michael Eckmann - Skidmore College - CS 106 - Spring 2010
21
methods All methods are defined within some class. we have seen the main method defined in the class of every application so far. Michael Eckmann - Skidmore College - CS 106 - Spring 2010
22
other methods we’ve used We have used other methods available in the Java API, methods like parseInt and parseFloat and println are available to us to use in their respective classes Integer, Float and System.out The methods in the Math class are other examples. These methods were defined for us to do a specific task. We call them when we need them. e.g. in the case of Integer.parseInt --- it’s task is to convert a String into an int. It takes a String as an argument (parameter) and returns a value of type int. Michael Eckmann - Skidmore College - CS 106 - Spring 2010
23
other methods we’ve used e.g. in the case of Integer.parseInt --- it’s task is to convert a String into an int. It takes a String as an argument (parameter) and returns a value of type int. example of a call to this method: some_int = Integer.parseInt( some_str ); In this example, some_str is the argument that is being passed in to the parseInt method and some_int is the variable that will get set to the value returned by the method. Michael Eckmann - Skidmore College - CS 106 - Spring 2010
24
methods We can create our own methods that we can call to perform specific tasks. Let’s say we’re writing a program to handle employee’s salaries. We might need to compute a salary after a raise. This example method would need to have access to the current salary and the raise percentage. It would then calculate the salary after the raise and return this value. Michael Eckmann - Skidmore College - CS 106 - Spring 2010
25
example of a programmer-defined method we might name this method salary_after_raise we need to take in two values, one for the current salary and one for the raise percentage. What primitive type might these be? we also need to return the salary that is computed. What primitive type might this returned value be? Michael Eckmann - Skidmore College - CS 106 - Spring 2010
26
example of a programmer-defined method so, this method could look like: public static double salary_after_raise(double curr_sal, double raise_pct ) { double new_sal; new_sal = curr_sal * ( 1 + raise_pct / 100 ); return new_sal; } Michael Eckmann - Skidmore College - CS 106 - Spring 2010
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.