Download presentation
Presentation is loading. Please wait.
Published byRita Beswick Modified over 9 years ago
1
Java Programing PSC 120 Jeff Schank
2
Let’s Create a Java Program 1.Open Eclipse 2.Create a project: File -> New -> Java Project 3.Create a package: File -> New -> Package 4.Create a Class: File -> New -> Class
3
How to say “Hello World!”
4
Let’s Add Some Numbers
5
Let’s Format the Results
6
Classes Let’s create another class called “Agent” File -> New -> Class
7
Data Now, let’s add some data—in this case a vocabulary
8
Methods Now, let’s add a method
9
Let’s Say Something
10
Let’s Say Something Randomly
11
Variables and Their Types As we just saw, we define the objects that will interact in our simulation by defining classesclasses Once a class is completely defined, then it can be instantiated many times – For example, we could define a class called “Person” and then make 1000 persons that interact in our simulation. Classes have members that occupy fields in a class A class can have indefinitely many fields and a field is either occupied by variables or methodsvariablesmethods When defining classes, I prefer to place the variables first and methods second in a class, but Java does not care how they are ordered Let’s look at some of the types of variables we can define in a class.
12
Example MyClass
13
Access Modifiers Variables (and methods) have specifications for how they are accessed There are four types of access modifiers: no explicit modifier, public, private, and protected. – public modifier—the field is accessible from all classes. – private modifier—the field is accessible only within its own class. – protected modifier—the field is accessible within its own class, package, and subclass. – no explicit modifier—the field is accessible within its own class and package
14
Methods Methods specify how objects do things (how they behave) Methods also specify how objects interact with other objects Methods have at least five features: 1.Modifiers—such as public, private, and others listed above. 2.The return type—the data type of the value returned by the method, or void if the method does not return a value. 3.The method name—the rules for field names apply to method names as well, but the convention is a little different. 4.The parameter list in parenthesis—a comma-delimited list of input parameters, preceded by their data types, enclosed by parentheses, (). If there are no parameters, you must use empty parentheses. 5.The method body, enclosed between braces—the method’s code, including the declaration of local variables, goes here.
15
Example Method 1. Modifier 2. Return Type 3. Method Name 4. Parameter List 5. Body
16
Example Method 1. Modifier 2. Return Type 3. Method Name 4. Parameter List 5. Body
17
Example Method 1. Modifier 2. Return Type 3. Method Name 4. Parameter List 5. Body
18
Logical Operators 1.&& means roughly “and” 2.|| means roughly “or” 3.== means roughly “equals” 4.! means roughly “not” 5.!= means roughly “not equal to” 6.> means “greater than” 7.>= means “greater than or equal to” 8.< means "less than” 9.<= means "less than or equal to"
19
&& and ||
20
! and !=
21
Arithmetic Operators 1.+ Additive operator but it is also used for String concatenation. 2.– Subtraction operator 3.*Multiplication operator 4./Division operator
22
Examples: +
23
If-then Statement Body Conditions
24
If-then Example
25
For Statements Probably, the next most commonly used control statement is the for statement. For control statements are one of several control statements that allow you to perform a number of operations over and over again for a specified number of steps (the others are while and do- while).while and do- while For statements typically have three statements as arguments and then a body that is repeated (there are variations on this theme).
26
A common form Modifier Arguments Body
27
Example
28
Another Example The maximum value for an integer is 2147483647 But, since it does not stop at this value, it would generate an error.
29
Switch Statement
30
Scope of a Variable The scope of a variable is the region of a program within which, a variable can be referenced. In Java, the largest scope a variable can have is at the level of the class. So, if variables are declared in a class field, they can be referenced anywhere in the class including inside methods.
31
Examples
33
This
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.