Some Eclipse shortcuts

Slides:



Advertisements
Similar presentations
CIT 590 Intro to Programming Java lecture 3. Hashmaps The equivalent of python dictionaries. With both ArrayLists and Hashmaps, the syntax only allows.
Advertisements

CIT 590 Intro to Programming Java lecture 4. Agenda Types Collections – Arrays, ArrayLists, HashMaps Variable scoping Access modifiers – public, private,
11-Jun-15 Just Enough Java. 2 What is Java? Java is a programming language: a language that you can learn to write, and the computer can be made to understand.
Access to Names Namespaces, Scopes, Access privileges.
Starting Classes and Methods. Objects have behaviors In old style programming, you had: –data, which was completely passive –functions, which could manipulate.
19-Jun-15 Access to Names Namespaces, Scopes, Access privileges.
25-Jun-15 Starting Classes and Methods. Objects have behaviors In old style programming, you had: data, which was completely passive functions, which.
26-Jun-15 Methods. About methods A method is a named group of declarations and statements If a method is in the same class, you execute those declarations.
26-Jun-15 Methods. About methods A method is a named group of declarations and statements You execute those declarations and statements by calling the.
Object References. Objects An array is a collection of values, all of the same type An object is a collection of values, which may be of different types.
28-Jun-15 Access to Names Namespaces, Scopes, Access privileges.
30-Jun-15 Static Methods. About methods A method is a named group of declarations and statements You execute those declarations and statements by calling.
COMP More About Classes Yi Hong May 22, 2015.
Basic Object- Oriented Concepts Presented By: George Pefanis 21-Sep-15.
Programming in Java Unit 2. Class and variable declaration A class is best thought of as a template from which objects are created. You can create many.
By Nicholas Policelli An Introduction to Java. Basic Program Structure public class ClassName { public static void main(String[] args) { program statements.
The Java Programming Language
Classes and Methods Computer Engineering Department Java Course Asst. Prof. Dr. Ahmet Sayar Kocaeli University - Fall 2014.
CIT 590 Intro to Programming First lecture on Java.
ECE122 Feb. 22, Any question on Vehicle sample code?
Classes In C++ 1. What is a class Can make a new type in C++ by declaring a class. A class is an expanded concept of a data structure: instead of holding.
CSC1401 Classes - 2. Learning Goals Computing concepts Adding a method To show the pictures in the slide show Creating accessors and modifiers That protect.
Basic Java Syntax COMP 401, Spring 2014 Lecture 2 1/14/2014.
Fall 2002CS 150: Intro. to Computing1 Streams and File I/O (That is, Input/Output) OR How you read data from files and write data to files.
Java Class Structure. Class Structure package declaration import statements class declaration class (static) variable declarations* instance variable.
24-Dec-15 Class Structure. 2 Classes A class describes a set of objects The objects are called instances of the class A class describes: Fields (instance.
Lecture 08. Since all Java program activity occurs within a class, we have been using classes since the start of this lecture series. A class is a template.
CIT 590 Intro to Programming Lecture 13. Some Eclipse shortcuts CTRL + SHIFT + F – format file (proper indentation etc). Please do this before you submit.
Quick Review of OOP Constructs Classes:  Data types for structured data and behavior  fields and methods Objects:  Variables whose data type is a class.
Object Oriented Programming and Data Abstraction Rowan University Earl Huff.
OOP Basics Classes & Methods (c) IDMS/SQL News
Programming in Java Transitioning from Alice. Becomes not myFirstMethod but …. public static void main (String[] arg) { // code for testing classes goes.
2-Oct-16 Basic Object-Oriented Concepts. 2 Concept: An object has behaviors In old style programming, you had: data, which was completely passive functions,
Inner Classes.
Topic: Inner Classes Course : JAVA PROGRAMMING Paper Code: ETCS-307 Faculty : Dr. Prabhjot Kaur Reader, Dept. of IT 1.
Information and Computer Sciences University of Hawaii, Manoa
Topic: Classes and Objects
User-Written Functions
Introduction to Modular Programming
Class Structure 15-Jun-18.
Yanal Alahmad Java Workshop Yanal Alahmad
Java Primer 1: Types, Classes and Operators
Namespaces, Scopes, Access privileges
Methods The real power of an object-oriented programming language takes place when you start to manipulate objects. A method defines an action that allows.
Subroutines Idea: useful code can be saved and re-used, with different data values Example: Our function to find the largest element of an array might.
Static Methods 14-Nov-18.
Class Structure 16-Nov-18.
CSC 113 Tutorial QUIZ I.
Defining Classes and Methods
Creating Objects in a Few Simple Steps
An Introduction to Java – Part I, language basics
Class Structure 28-Nov-18.
Class Structure 7-Dec-18.
Class Structure 2-Jan-19.
Recap Week 2 and 3.
Namespaces, Scopes, Access privileges
Class Structure 25-Feb-19.
Building Java Programs
Java Programming Language
Inner Classes 17-Apr-19.
Inner Classes 21-Apr-19.
Classes, Objects and Methods
Inner Classes 11-May-19.
Inner Classes 18-May-19.
LOOPS The loop is the control structure we use to specify that a statement or group of statements is to be repeatedly executed. Java provides three kinds.
Methods 16-May-19.
CS 1054: Lecture 2, Chapter 1 Objects and Classes.
Corresponds with Chapter 5
Classes and Methods 15-Aug-19.
Inner Classes 25-Oct-19.
Presentation transcript:

Some Eclipse shortcuts CTRL + SHIFT + F – format file (proper indentation etc). Please do this before you submit Hold control down and mouse click to navigate to functions/classes etc Outline Compare with … local history (life saver!) CTRL + SHIFT + R – open resource (open file) – probably not so relevant for you since your projects do not have that many files

Class Structure 15-Jun-18

Classes A class describes a set of objects The objects are called instances of the class A class describes: Fields (instance variables)that hold the data for each object Constructors that tell how to create a new object of this class Methods that describe the actions the object can perform In addition, a class can have data and methods of its own (not part of the objects) For example, it can keep a count of the number of objects it has created Such data and methods are called static We are avoiding static data and methods for the time being

Defining a class Here is the simplest syntax for defining a class: class ClassName { // the fields (variables) of the object // the constructors for the object // the methods of the object } You can put public, protected, or private before the word class Things in a class can be in any order (I recommend the above order)

Defining fields An object’s data is stored in fields (also called instance variables) The fields describe the state of the object Fields are defined with ordinary variable declarations: String name; Double health; int age = 0; Instance variables are available throughout the entire class that declares them

Defining constructors A constructor is code to create an object You can do other work in a constructor, but you shouldn’t The syntax for a constructor is: ClassName(parameters) { …code… } The ClassName has to be the same as the class that the constructor occurs in The parameters are a comma-separated list of variable declarations

Example constructor I public class Person { String name; int age; boolean male; Person (String aName, boolean isMale) { name = aName; male = isMale; } } Constructor Parameters

Example constructor II Most constructors just set instance variables: public class Person { String name; boolean male; Person (String name, boolean male) { this.name = name ; this.male = male ; } }

Defining a method A method has the syntax: Example: return-type method-name(parameters) { method-variables code } Example: boolean isAdult(int age) { int magicAge = 21; return age >= magicAge; } double average(int a, int b) { return (a + b) / 2.0; }

Methods may have local variables A method may have local (method) variables Formal parameters are a kind of local variable int add(int m, int n) { int sum = m + n; return sum; } m, n, and sum are all local variables The scope of m, n, and sum is the method These variables can only be used in the method, nowhere else The names can be re-used elsewhere, for other variables

Blocks (== Compound statements) Inside a method or constructor, whenever you use braces, you are creating a block, or compound statement: int absoluteValue(int n) { if (n < 0) { return -n; } else return n; }

Declarations in a method The scope of formal parameters is the entire method The scope of a variable in a block starts where you define it and extends to the end of the block if (x > y) { int larger = x; } else { int larger = y; } return larger; larger scope of larger larger scope of a different larger Illegal: not declared in current scope

Nested scopes int fibonacci(int limit) { int first = 1; int second = 1; while (first < 1000) { System.out.print(first + " "); int next = first + second; first = second; second = next; } System.out.println( ); } limit first second next

The for loop The for loop is a special case You can declare variables in the for statement The scope of those variables is the entire for loop This is true even if the loop is not a block void multiplicationTable() { for (int i = 1; i <= 10; i++) { for (int j = 1; j <= 10; j++) System.out.print(" " + i * j); System.out.println(); } } i j

Returning a result from a method If a method is to return a result, it must specify the type of the result: boolean isAdult ( … You must use a return statement to exit the method with a result of the correct type: return age >= magicAge;

Returning no result from a method The keyword void is used to indicate that a method doesn’t return a value The return statement must not specify a value Example: void printAge(String name, int age) { System.out.println(name + " is " + age + " years old."); return; } There are two ways to return from a void method: Execute a return statement Reach the closing brace of the method

Sending messages to objects We don’t perform operations on objects, we “talk” to them This is called sending a message to the object A message looks like this: object.method(extra information) The object is the thing we are talking to The method is a name of the action we want the object to take The extra information is anything required by the method in order to do its job Examples: g.setColor(Color.pink); amountOfRed = Color.pink.getRed( );

Putting it all together class Person { // fields String name; int age; // constructor Person(String name) { this.name = name; age = 0; } // methods String getName() { return name; } void birthday() { age = age + 1; System.out.println( "Happy birthday!"); } }

Using our new class Person john; john = new Person("John Smith"); System.out.print (john.getName()); System.out.println(" is having a birthday!"); john.birthday(); Of course, this code must also be inside a class!

Diagram of program structure File Class Variables Constructors Variables Statements Methods A program consists of one or more classes Typically, each class is in a separate .java file

null If you declare a variable to have a given object type, for example, Person john; String name; ...and if you have not yet assigned a value to it, for example, with john = new Person(); String name = “John Smith"; ...then the value of the variable is null null is a legal value, but there isn’t much you can do with it It’s an error to refer to its fields, because it has none It’s an error to send a message to it, because it has no methods The error you will see is NullPointerException

Methods and static methods Java has two kinds of methods: static methods and non-static methods (called instance methods) However, before we can talk about what it means to be static, we have to learn a lot more about classes and objects Most methods you write should not, and will not be static Every Java program has a public static void main(String[ ] args) method This starts us in a “static context” To “escape from static”, I recommend starting every program in a certain way, as shown on the next slide

Escaping from static class MyClass { public static void main(String[] args) { new MyClass().run(); } void run() { // Your real code begins here } } You can replace the names MyClass and run with names of your choice, but notice that each name occurs in two places, and they have to match up Do not worry about this for the current assignment!

Default values/ default constructors Do I have to have a constructor? No. Java will provide one You might not like what Java provides and hence usually best to write your own What if I have a class with 25 fields, but most of them have a default value Call the complicated constructor with default values this(argument1, default value of argument 2)

Public/private/protected/anything else? Access Levels Modifier Class Package Subclass World public Y protected N no modifier private For the time being, until we discuss inheritance, a good idea is to make all your fields private and all your methods public.