1 CSC 533: Organization of Programming Languages Spring 2008 Java and OOP  design goals  language properties  classes & inheritance  abstract classes.

Slides:



Advertisements
Similar presentations
Portability and Safety Mahdi Milani Fard Dec, 2006 Java.
Advertisements

Lab Information Security Using Java (Review) Lab#0 Omaima Al-Matrafi.
1 l Inheritance Basics l Programming with Inheritance l Dynamic Binding and Polymorphism Inheritance.
1 CSC 533: Organization of Programming Languages Spring 2005 OOP in Java  object-oriented programming  inheritance & polymorphism  interfaces  abstract.
Lab#1 (14/3/1431h) Introduction To java programming cs425
George Blank University Lecturer. CS 602 Java and the Web Object Oriented Software Development Using Java Chapter 4.
Road Map Introduction to object oriented programming. Classes
Introduction to Java Kiyeol Ryu Java Programming Language.
Inheritance and Class Hierarchies Chapter 3. Chapter 3: Inheritance and Class Hierarchies2 Chapter Objectives To understand inheritance and how it facilitates.
OOP in Java Nelson Padua-Perez Chau-Wen Tseng Department of Computer Science University of Maryland, College Park.
Principles of Object-Oriented Software Development The language Java.
COMP 519: Web Programming Fall 2006 Acknowledgment: The slides are by Dr. David Reed.Dr. David Reed Java Overview  Design goals & features  platform.
1 Chapter 7 l Inheritance Basics l Programming with Inheritance l Dynamic Binding and Polymorphism Inheritance.
Introduction to Java CS 331. Introduction Present the syntax of Java Introduce the Java API Demonstrate how to build –stand-alone Java programs –Java.
C++ fundamentals.
Session-02. Objective In this session you will learn : What is Class Loader ? What is Byte Code Verifier? JIT & JAVA API Features of Java Java Environment.
1 CSC 551: Web Programming Spring 2004 Java Overview  Design goals & features  platform independence, portable, secure, simple, object-oriented, … 
JAVA v.s. C++ Programming Language Comparison By LI LU SAMMY CHU By LI LU SAMMY CHU.
OOP Languages: Java vs C++
FALL 2005CSI 4118 – UNIVERSITY OF OTTAWA1 Part 4 Web technologies: HTTP, CGI, PHP,Java applets)
Programming Languages and Paradigms Object-Oriented Programming.
Dr. Ahmad R. Hadaegh A.R. Hadaegh California State University San Marcos (CSUSM) Page 1 Virtual Functions Polymorphism Abstract base classes.
“is a”  Define a new class DerivedClass which extends BaseClass class BaseClass { // class contents } class DerivedClass : BaseClass { // class.
Java Introduction Lecture 1. Java Powerful, object-oriented language Free SDK and many resources at
Polymorphism, Inheritance Pt. 1 COMP 401, Fall 2014 Lecture 7 9/9/2014.
Sadegh Aliakbary Sharif University of Technology Fall 2012.
1 Module Objective & Outline Module Objective: After completing this Module, you will be able to, appreciate java as a programming language, write java.
Programming Languages and Paradigms Object-Oriented Programming (Part II)
Algorithm Programming Bar-Ilan University תשס"ח by Moshe Fresko.
University of Houston-Clear Lake Proprietary© 1997 Evolution of Programming Languages Basic cycle of improvement –Experience software difficulties –Theory.
Programming Languages and Paradigms Object-Oriented Programming.
Introduction and Features of Java. What is java? Developed by Sun Microsystems (James Gosling) A general-purpose object-oriented language Based on C/C++
Java Programming, Second Edition Chapter One Creating Your First Java Program.
Sun Certified Java Programmer, ©2004 Gary Lance, Chapter 5, page 1 Sun Certified Java 1.4 Programmer Chapter 5 Notes Gary Lance
1 CSC 533: Organization of Programming Languages Spring 2010 Java and OOP  design goals  language properties  classes & inheritance  abstract classes.
Introduction to Object Oriented Programming CMSC 331.
What Is Java? According to Sun in a white paper: Java: A simple, object-oriented, network-savvy, interpreted, robust, secure, architecture-neutral, portable,
Topic 1 Object Oriented Programming. 1-2 Objectives To review the concepts and terminology of object-oriented programming To discuss some features of.
Computer Programming 2 Why do we study Java….. Java is Simple It has none of the following: operator overloading, header files, pre- processor, pointer.
Core Java Introduction Byju Veedu Ness Technologies httpdownload.oracle.com/javase/tutorial/getStarted/intro/definition.html.
Inheritance. Inheritance - Introduction Idea behind is to create new classes that are built on existing classes – you reuse the methods and fields and.
Application development with Java Lecture 21. Inheritance Subclasses Overriding Object class.
JAVA INTRODUCTION. What is Java? 1. Java is a Pure Object – Oriented language 2. Java is developing by existing languages like C and C++. How Java Differs.
Duke CPS From C++ to Java l Java history: Oak, toaster-ovens, internet language, panacea l What it is ä O-O language, not a hybrid (cf. C++)
Inheritance and Class Hierarchies Chapter 3. Chapter 3: Inheritance and Class Hierarchies2 Chapter Objectives To understand inheritance and how it facilitates.
Inheritance and Class Hierarchies Chapter 3. Chapter Objectives  To understand inheritance and how it facilitates code reuse  To understand how Java.
Chapter 11: Advanced Inheritance Concepts. Objectives Create and use abstract classes Use dynamic method binding Create arrays of subclass objects Use.
Lesson 1 1 LESSON 1 l Background information l Introduction to Java Introduction and a Taste of Java.
Terms and Rules II Professor Evan Korth New York University (All rights reserved)
Object Oriented Programming CMSC 331. Concept of Abstraction “An abstraction is a view or representation of an entity that includes only the attributes.
SESSION 1 Introduction in Java. Objectives Introduce classes and objects Starting with Java Introduce JDK Writing a simple Java program Using comments.
JAVA PROGRAMMING Buzzwords. Simple: Less complex syntax than C++ Not as easy to design as Visual Basic Small size of interpreter.
 It is a pure oops language and a high level language.  It was developed at sun microsystems by James Gosling.
Sung-Dong Kim, Dept. of Computer Engineering, Hansung University Java - Introduction.
Fundamental of Java Programming (630002) Unit – 1 Introduction to Java.
CSC 533: Organization of Programming Languages Spring 2007
Object Oriented Programming in
Chapter No. : 1 Introduction to Java.
Internet and Java Foundations, Programming and Practice
Introduction Enosis Learning.
Introduction Enosis Learning.
Java Programming Language
Units with – James tedder
Units with – James tedder
From C++ to Java Java history: Oak, toaster-ovens, internet language, panacea What it is O-O language, not a hybrid (cf. C++) compiled to byte-code, executed.
CSC 551: Web Programming Spring 2004
(Computer fundamental Lab)
CSC 551: Web Programming Spring 2004
Java History, Editions, Version Features
Chap 1. Getting Started Objectives
Presentation transcript:

1 CSC 533: Organization of Programming Languages Spring 2008 Java and OOP  design goals  language properties  classes & inheritance  abstract classes & interfaces

2 Java was developed at Sun Microsystems, 1995  originally designed for small, embedded systems in electronic appliances  initial attempts used C++, but frustration at limitations/pitfalls recall: C++ = C + OOP features the desire for backward compatibility led to the retention of many bad features Java desired features (from the Java white paper): simpleobject-orientednetwork-savvy interpretedrobustsecure architecture-neutralportablehigh-performance multi-threadeddynamic note: these are desirable features for any modern language (+ FREE)  Java has become very popular, especially when Internet related

3 Language features simple  syntax is based on C++ (familiarity  easier transition for programmers)  removed many rarely-used, confusing features e.g., operator overloading, multiple inheritance, automatic coercions  added memory management (reference count/garbage collection hybrid) network-savvy  extensive libraries for coping with TCP/IP protocols like HTTP & FTP  Java applications can access remote URL's the same as local files object-oriented  OOP facilities similar C++, but all member functions (methods) dynamically bound  pure OOP – everything is a class, no independent functions*

4 Language features (cont.) robust  for embedded systems, reliability is essential  Java combines extensive static checking with dynamic checking  closes C-style syntax loopholes  compile-time checking more effective  even so, the linker understands the type system & repeats many checks  Java disallows pointers as memory accessors  arrays & strings are ADTs, no direct memory access  eliminates many headaches, potential problems secure  in a networked/distributed environment, security is essential  execution model enables virus-free*, tamper-free* systems  downloaded applets cannot open, read, or write local files  uses authentication techniques based on public-key encryption note: the lack of pointers closes many security loopholes by itself

5 Language features (cont.) architecture-neutral  want to be able to run Java code on multiple platforms  neutrality is achieved by mixing compilation & interpretation 1.Java programs are translated into byte code by a Java compiler  byte code is a generic machine code 2.byte code is then executed by an interpreter (Java Virtual Machine)  must have a byte code interpreter for each hardware platform  byte code will run on any version of the Java Virtual Machine  alternative execution model:  can define and compile applets (little applications)  not stand-alone, downloaded & executed by a Web browser portable  architecture neutral + no implementation dependent features  size of primitive data types are set  libraries define portable interfaces

6 Language features (cont.) interpreted  interpreted  faster code-test-debug cycle  on-demand linking (if class/library in not needed, won't be linked) does interpreted mean slow? multi-threaded  a thread is like a separate program, executing concurrently  can write Java programs that deal with many tasks at once by defining multiple threads (same shared memory, but semi-independent execution)  threads are important for multi-media, Web applications high-performance  faster than traditional interpretation since byte code is "close" to native code  still somewhat slower than a compiled language (e.g., C++)

7 Language features (cont.) dynamic  Java was designed to adapt to an evolving environment e.g., the fragile class problem in C++, if you modify a parent class, you must recompile all derived classes in Java, memory layout decisions are NOT made by the compiler instead of compiling references down to actual addresses, the Java compiler passes symbolic reference info to the byte code verifier and the interpreter the Java interpreter performs name resolution when classes are being linked, then rewrites as an address thus, the data/methods of the parent class are not determined until the linker loads the parent class code if the parent class has been recompiled, the linker automatically gets the updated version Note: the extra name resolution step is price for handling the fragile class problem

8 ADTs in Java recall: Java classes look very similar to C++ classes  member functions known as methods  each field/method has its own visibility specifier  must be defined in one file, can't split into header/implementation  javadoc facility allows automatic generation of documentation  extensive library of data structures and algorithms List: ArrayList, LinkedList Set: HashSet, TreeSet Map: HashMap, TreeMap Queue, Stack, …  load libraries using import public class Person { private String name; private String SSN; private char gender; private int age; public Person(string name, string SSN, char gender, int age) { this.name = name; this.SSN = SSN; this.gender = gender; this.age = age; } public void birthday() { this.age++; } public String toString() { return "Name: " + this.name + "\nSSN : " + this.SSN + "\nGender: " + this.gender + "\nAge: " + this.age; }

9 Inheritance in Java achieve inheritance by "extending" a class  can add new methods or override existing methods  can even remove methods (but generally not considered good design – WHY?) public class Student extends Person { private String school; private int level; public Student(String name, String SSN, char gender, int age, String school, int level) { super(name, SSN, gender, age); this.school = school; this.level = level; } void advance() { this.level++; } public String toString() { return super.toString() + "\nSchool: " + this.school + "\nLevel: " + this.level; } recall: Java uses "super" to call a constructor or method from the parent class here, call the super constructor to initialize the private fields also, call the super.toString to print the private fields

10 Dynamic (late) binding in Java, all method calls are bound dynamically  this was not the default in C++, required declaring methods to be "virtual"  the implementation of dynamic binding is the same as in C++ since dynamic binding is used, each method call will refer to the most specific version public void foo(Person p) {... p.birthday();... System.out.println(p);... } i.e., foo(somePerson) will call the Person version, while foo(someStudent) will call the Student version name="Chris" ssn=" " gender='F' age=20 toString somePerson code segment... Person code... Student code... birthday name="Chris" ssn=" " gender='F' age=20 toString someStudent birthday school = "Creighton" level = 14 advance

11 Abstract classes there are times when you want to define a class hierarchy, but the parent class is incomplete (more of a placeholder)  e.g., the Statement class from HW3  want to be able to talk about a hierarchy of statements (including Assignment, Output, If), but there is no "Statement" an abstract class is a class in which some methods are specified but not implemented  can provide some concrete fields & methods  the keyword "abstract" identifies methods that must be implemented by a derived class  you can't create an object of an abstract class, but it does provide a framework for inheritance note: you can define abstract classes in C++, but in a very kludgy way

12 Statement class public abstract class Statement { public abstract void execute(VariableTable variables); public abstract Statement.Type getType(); public abstract String toString(); public static enum Type { OUTPUT, ASSIGNMENT, IF, END, QUIT } public static Statement getStatement() { String line = (new Scanner(System.in)).nextLine(); String first = (new Scanner(line)).next(); if (first.equals("output")) { return new Output(new Scanner(line)); } else if (first.equals("quit")) { return new Quit(new Scanner(line)); } else if (first.equals("if")) { return new If(new Scanner(line)); } else if (first.equals("end")) { return new End(new Scanner(line)); } else if (Token.isIdentifier(first)) { return new Assignment(new Scanner(line)); } else { System.out.println("SYNTAX ERROR: Unknown statement type"); System.exit(0); } return null; } Statement class provides framework for derived classes static enum Type and getStatement method are provided as part of the abstract class the other methods MUST be implemented exactly in a derived class

13 Derived statement classes public class Assignment extends Statement { private String vbl; private Expression expr; public void execute(VariableTable variables) { … } public Statement.Type getType() { … } public String toString() { … } } public class Output extends Statement { private Expression expr; public void execute(VariableTable variables) { … } public Statement.Type getType() { … } public String toString() { … } } public class If extends Statement { private Expression expr; private ArrayList stmts; public void execute(VariableTable variables) { … } public Statement.Type getType() { … } public String toString() { … } } derived classes define specific statements (assignment, output, if)  each will have its own private data fields  each will implement the methods appropriately  as each new statement class is added, must update the Type enum and the getStatement code

14 Interfaces an abstract class combines concrete fields/methods with abstract methods  it is possible to have no fields or methods implemented, only abstract methods  in fact this is a useful device for software engineering define the behavior of an object without constraining implementation Java provides a special notation for this useful device: an interface  an interface simply defines the methods that must be implemented by a class  a derived class is said to "implement" the interface if it meets those specs public interface List { boolean add(E obj); void add(index i, E obj); void clear(); boolean contains (E obj); E get(index i); int indexOf(E obj); E set(index i, E obj); int size();... } an interface is equivalent to an abstract class with only abstract methods note: can't specify any fields, nor any private methods

15 List interface interfaces are useful for grouping generic classes  can have more than one implementation, with different characteristics public class ArrayList implements List { private T[] items;... } public class LinkedList implements List { private T front; private T back;... }  using the interface, can write generic code that works on any implementation public numOccur(List words, String desired) { int count = 0; for (int i = 0; i < words.size(); i++) { if (desired.equals(words.get(i))) { count++; }

16 Multiple interfaces in Java, a class can implement more than one interface e.g., ArrayList implements List, Collection, Iterable, … but can extend at most one parent class - WHY? suppose a Dean class is defined that implements two interfaces  the Dean class must implement the union of the listed methods – OK! AdministratorFaculty Dean but if inheritance were used, conflicts could occur  what if both parent classes had fields or methods with the same names?  e.g., would super.getSalary() call the Faculty or the Adminstrator version? C++ allows for multiple inheritance but user must disambiguate using ::  Java simply disallows it as being too tricky & not worth it

17 Non-OO programming in Java /** * Simple program that prints a table of temperatures * Dave Reed 3/5/08 */ public class FahrToCelsius { private static double FahrToCelsius(double temp) { return 5.0*(temp-32.0)/9.0; } public static void main(String[] args) { double lower = 0.0, upper = 100.0, step = 5.0; System.out.println("Fahr\t\tCelsius"); System.out.println("----\t\t "); for (double fahr = lower; fahr <= upper; fahr += step) { double celsius = FahrToCelsius(fahr); System.out.println(fahr + "\t\t" + celsius); } despite its claims as a pure OOP language, you can write non-OO code same as C++  static methods can call other static methods for large projects, good OO design leads to more reliable & more easily maintainable code