java coding david davenport computer eng. dept., bilkent university ankara - turkey. email:...

21
Java Coding David Davenport Computer Eng. Dept., Bilkent University Ankara - Turkey. email: [email protected] ...

Post on 22-Dec-2015

234 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Java Coding David Davenport Computer Eng. Dept., Bilkent University Ankara - Turkey. email: david@bilkent.edu.tr

Java Coding

David Davenport

Computer Eng. Dept.,Bilkent UniversityAnkara - Turkey.

email: [email protected]

...

Page 2: Java Coding David Davenport Computer Eng. Dept., Bilkent University Ankara - Turkey. email: david@bilkent.edu.tr

IMPORTANT… Students…

This presentation is designed to be used in class as part of a guided discovery sequence. It is not self-explanatory! Please use it only for revision purposes after having taken the class. Simply flicking through the slides will teach you nothing. You must be actively thinking, doing and questioning to learn!

Instructors…You are free to use this presentation in your classes and to make any modifications to it that you wish. All I ask is an email saying where and when it is/was used. I would also appreciate any suggestions you may have for improving it.

thank you, David.

Page 3: Java Coding David Davenport Computer Eng. Dept., Bilkent University Ankara - Turkey. email: david@bilkent.edu.tr

From problem to program… The story so far...

JavaSourceCode

Javabytecode

Machinecode

Problem AlgorithmData/Memory requirements

Page 4: Java Coding David Davenport Computer Eng. Dept., Bilkent University Ankara - Turkey. email: david@bilkent.edu.tr

Need Java Syntax for… Algorithm (in pseudo-code)

Sequence, Decision & Repetition, of Data flow operations

• Input, Output & Assignment

Data/Memory requirements Meaningfully named memory locations Restriction on data (data types) Variables or Constants & initial value

Plus comments & methods!

Page 5: Java Coding David Davenport Computer Eng. Dept., Bilkent University Ankara - Turkey. email: david@bilkent.edu.tr

Comments & White space Comments Syntax:

// any text on remainder of current line /* any text across multiple lines */

Examples: // Author: David.

// Date: Oct. 2002 /* This program

blah, blah, blah*/

Java ignores line endings, blanks lines & white space!

Layout program code for ease of reading!

Page 6: Java Coding David Davenport Computer Eng. Dept., Bilkent University Ankara - Turkey. email: david@bilkent.edu.tr

Identifiers User-defined names

Used for variables, constants, methods, etc. Any sequence of letters, digits and the

underscore character only. First character may not be a digit! Upper and lower case are considered different

(i.e. case sensitive!) Cannot use Java reserved words

• i.e. words such as while, for, class, if, etc.

CS101 rule: Names must be meaningful!

Page 7: Java Coding David Davenport Computer Eng. Dept., Bilkent University Ankara - Turkey. email: david@bilkent.edu.tr

Data Types Primitive

int, long, … (numeric integer) float, double, … (numeric real) char - any character, e.g. A, a, B, b, 3, ?, &, …

(Java uses ISO Unicode standard, 16 bit/char) boolean - true / false

Non-primitive String - any sequence of zero or more characters enum – an ordered set of user-defined values anything & everything else!

(we will come to these shortly)

Page 8: Java Coding David Davenport Computer Eng. Dept., Bilkent University Ankara - Turkey. email: david@bilkent.edu.tr

Primitive Numeric Types

Type

byteshortintlong

floatdouble

Storage

8 bits16 bits32 bits64 bits

32 bits64 bits

Min Value

-128-32,768-2,147,483,648-9 x 1018

3.4 x 10 38 7 significant digits 1.7 x 10 308 15 significant digits

Max Value

12732,7672,147,483,6479 x 1018

Page 9: Java Coding David Davenport Computer Eng. Dept., Bilkent University Ankara - Turkey. email: david@bilkent.edu.tr

Data Types Primitive

int, long, … (numeric integer) float, double, … (numeric real) char - any character, e.g. A, a, B, b, 3, ?, &, …

(Java uses ISO Unicode standard, 16 bit/char) boolean - true / false

Non-primitive String - any sequence of zero or more characters enum – an ordered set of user-defined values anything & everything else!

(we will come to these shortly)

Page 10: Java Coding David Davenport Computer Eng. Dept., Bilkent University Ankara - Turkey. email: david@bilkent.edu.tr

Declaring Variables Syntax:

Type Any Java type

Name (identifier) Convention:

first letter of embedded words capital, except first!

Examples: int age; double area; long initialSpeed; char letterGrade; char lettergrade; boolean exists;

CAUTIONJava is case

sensitive!

type name;

Page 11: Java Coding David Davenport Computer Eng. Dept., Bilkent University Ankara - Turkey. email: david@bilkent.edu.tr

Declaring Constants Syntax:

Type Any Java type

Name (identifier) Convention: all capital letters!

Value (literal, variable, constant, expression)

Examples: final int SPEEDOFLIGHT = 300; final double TAXRATE = 27.5; final float PI = 3.142; final String COMPANY = “Bilkent”;

Literal valuesString use “…”

char use ‘.’

final type name = value;

Page 12: Java Coding David Davenport Computer Eng. Dept., Bilkent University Ankara - Turkey. email: david@bilkent.edu.tr

Output (1) Syntax:

where output is Literal value

eg. “The area is “, ‘?’, 12.5, …

Named variable or constanteg. area, userName, TAXRATE, …

Expressioneg. 2 * PI * radius,

“The area is “ + area

System.out.println( output );

Value is output exactly as is!

Value in named memory location

is output

Resulting value of expression is

output

Note use of + for string concatenation

Page 13: Java Coding David Davenport Computer Eng. Dept., Bilkent University Ankara - Turkey. email: david@bilkent.edu.tr

Output (2) Use

To output the value & leave text cursor on current line.

System.out.print( output );

System.out.println( “Welcome to CS101”);System.out.println( “The tax rate is “ + TAXRATE + ‘%’);

System.out.println( “Welcome to CS101”);System.out.print( “The tax rate is “);System.out.print( TAXRATE);System.out.println( ‘%’);

System.out.println();Output blank line!

Page 14: Java Coding David Davenport Computer Eng. Dept., Bilkent University Ankara - Turkey. email: david@bilkent.edu.tr

Input Syntax:

Examples

stringVariable = scan.next();

intVariable = scan.nextInt();

doubleVariable = scan.nextDouble();

userName = scan.next();age = scan.nextInt();salary = scan.nextDouble();str = scan.nextLine();

• Standard from Java5.0 on• Invalid input may give run-time error!• Must include:

•import java.util.Scanner;•Scanner scan = new Scanner( System.in);

Variables must be declared

before use

Page 15: Java Coding David Davenport Computer Eng. Dept., Bilkent University Ankara - Turkey. email: david@bilkent.edu.tr

Assignment Syntax:

where expression is operand operator operand

& Operand is

• Literal value• Named Variable or constant• Result of method call• Expression!

Operator is• +, -, *, /, % (modulus, remainder after integer division)

resultVariable = expression;

Result of expression must

be of suitable type to put into resultVariable!

Page 16: Java Coding David Davenport Computer Eng. Dept., Bilkent University Ankara - Turkey. email: david@bilkent.edu.tr

Assignment Examples

What is the value of z?

Evaluation rules Bracketed sub-expressions first Operator precedence ( * & / then + & - ) Left to right

sum = firstNumber + secondNumber;net = gross * ( 1 – TAXRATE/100);count = count + 1;c = Math.sqrt( a * a + b * b );

Z = 4 + 2 / 3 – 1;

Page 17: Java Coding David Davenport Computer Eng. Dept., Bilkent University Ankara - Turkey. email: david@bilkent.edu.tr

Outline Java Program The CS101 console template…

import java.util.Scanner;

/** …description… @author …yourname… @version 1.00, date*/public class ClassName {

public static void main( String[] args) {

// constants

// variables

// program code

}}

ClassName.java

In Java program = class

ClassnameConvention:first letters capitalised

Filename & classname MUST be the same.

Page 18: Java Coding David Davenport Computer Eng. Dept., Bilkent University Ankara - Turkey. email: david@bilkent.edu.tr

A Complete Example (1)

Problem – find area & circumference… Algorithm

Data requirements

1. Print welcome message2. Ask for & get radius from user3. Compute area as pi.radius.radius4. Compute circumference as 2.pi.radius5. Report area, circumference & radius

L radius - intL area, circumference - double PI – double, constant = 3.142

Page 19: Java Coding David Davenport Computer Eng. Dept., Bilkent University Ankara - Turkey. email: david@bilkent.edu.tr

A Complete Example (2)

import java.util.Scanner;

/** …description… @author …yourname… @version 1.00, 2005/10/07*/

public class AreaCircum {

public static void main( String[] args) {

// constants

// variables

// 1. Print welcome message

// 2. Ask for & get radius from user

// 3. Compute area as pi.radius.radius

// 4. Compute circumference as 2.pi.radius

// 5. Report area, circumference & radius}

}

AreaCircum.java

Page 20: Java Coding David Davenport Computer Eng. Dept., Bilkent University Ankara - Turkey. email: david@bilkent.edu.tr

A Complete Example (3)

import java.util.Scanner;

/**

* AreaCircum - computes area & circum of circle given radius

*

* @author David

* @version 1.00, 2005/10/07

*/

public class AreaCircum

{

public static void main( String[] args)

{

// constants

final double PI = 3.142;

// variables

int radius;

double area;

double circumference;

Header has been edited to include program description & author name

AreaCircum.java

Page 21: Java Coding David Davenport Computer Eng. Dept., Bilkent University Ankara - Turkey. email: david@bilkent.edu.tr

A Complete Example (3)Scanner scan = new Scanner( System.in);

// 1. Print welcome message

System.out.println( "Welcome to area circumference finder.");

// 2. Ask for & get radius from user

System.out.print( "Please enter the radius: ");

radius = scan.nextInt();

// 3. Compute area as pi.radius.radius

area = PI * radius * radius;

// 4. Compute circumference as 2.pi.radius

circumference = 2 * PI * radius;

// 5. Report area, circumference & radius

System.out.print( "The area of a circle of radius ");

System.out.print( radius);

System.out.print( " is ");

System.out.println( area);

System.out.print( "and its circumference is ");

System.out.print( circumference);

System.out.println();

}

} // end of class AreaCircum

Added line to get Keyboard input.

Steps 2 & 5 expanded as per original algorithm.