Introduction to Computers and Java

Similar documents
Introduction to Computers and Java

Introduction to Computers and Java

9/11/08 (c) 2008 Matthew J. Rutherford Class (c) 2008 Matthew J. Rutherford Class

Introduction to Computers and Java. Objectives. Outline. Harald Gall, Prof. Dr. Institut für Informatik Universität Zürich.

Introduction to Computers and Java

Introduction to Computers and Java

Introduction to Computers and Java. Objectives. Outline. Harald Gall, Prof. Dr. Institut für Informatik Universität Zürich.

Introduction to Computers and Java

Chapter 1. Introduction to Computers and Java Objects. Background information. » important regardless of programming language. Introduction to Java

COMP Computer Basics. Yi Hong May 13, 2015

Computer Basics 1/24/13. Computer Organization. Computer systems consist of hardware and software.

Computer Basics 1/6/16. Computer Organization. Computer systems consist of hardware and software.

Chapter 1: Introduction to Computers and Java

8/23/2014. Chapter Topics. Introduction. Java History. Why Program? Java Applications and Applets. Chapter 1: Introduction to Computers and Java

BASICS.

CHAPTER 1 Introduction to Computers and Java

Tutorials. Tutorial every Friday at 11:30 AM in Toldo 204 * discuss the next lab assignment

COMP 110 Introduction to Programming. What did we discuss?

The Programming Process Summer 2010 Margaret Reid-Miller

Chapter 1 Introduction to Computers, Programs, and Java. What is a Computer? A Bit of History

Chapter. Focus of the Course. Object-Oriented Software Development. program design, implementation, and testing

Chapter 1. Introduction to Computers and Programming. M hiwa ahmad aziz

Chapter 1: Why Program? Computers and Programming. Why Program?

Introduction To Java. Chapter 1. Origins of the Java Language. Origins of the Java Language. Objects and Methods. Origins of the Java Language

Chapter 1: Why Program? Main Hardware Component Categories 8/23/2014. Main Hardware Component Categories: Why Program?

Computer Hardware. Java Software Solutions Lewis & Loftus. Key Hardware Components 12/17/2013

COMP163. Introduction to Computer Programming. Introduction and Overview of the Hardware

Chapter 1: Introduction to Computers and Programming

! Learn how to think like a computer scientist. ! Learn problem solving. ! Read and write code. ! Understand object oriented programming

Introduction to Java Programming

Chapter 1 Introduction to Computers, Programs, and Java

Computer Fundamentals

Chapter 1 Introduction to Java

Class List. Java Must Have. Class Goals. Class Goals. Schedule

Darrell Bethea May 10, MTWRF 9:45-11:15 AM Sitterson 011

2 rd class Department of Programming. OOP with Java Programming

Computing and compilers

Lab # 2. For today s lab:

Chapter 1 Introduction to Computers, Programs, and Java

Object Oriented Design

CSE 1223: Introduction to Computer Programming in Java Chapter 1 Computer Basics

Lesson 2: First Java Programs

Elements of Computers and Programming Dr. William C. Bulko. What is a Computer?

Chapter 1 Introduction to Computers, Programs, and Java

Chapter 1: Introduction to Computers, Programs, and Java

Chapter 1 Introduction to Computers, Programs, and Java

ICOM 4015: Advanced Programming

Programming 1. Lecture 1 COP 3014 Fall August 28, 2017

Week 2: Data and Output

Chapter 1 Introduction to Computers, Programs, and Java

Chapter 1 - Introduction. Copyright 2014 by John Wiley & Sons. All rights reserved. 1

SDKs - Eclipse. SENG 403, Tutorial 2

CSC116: Introduction to Computing - Java

The Computer System. Hardware = Physical Computer. Software = Computer Programs. People = End Users & Programmers. people

Java and Software Design

Programming 1 - Honors

Topics. Hardware and Software. Introduction. Main Memory. The CPU 9/21/2014. Introduction to Computers and Programming

Fundamentals of Programming. By Budditha Hettige

2/9/2012. Chapter One: Introduction. Chapter Goals

Streams and File I/O

CSI31 Introduction to Computer Programming I. Dr. Sharon Persinger Fall

C H A P T E R 1. Introduction to Computers and Programming

Java Basics. Object Orientated Programming in Java. Benjamin Kenwright

Chapter 1 Introduction to Computers and Programming

Lecture 1: Introduction to Java

Week One: Introduction A SHORT INTRODUCTION TO HARDWARE, SOFTWARE, AND ALGORITHM DEVELOPMENT

Objectives. Chapter 1 Introduction to Computers, Programs, and Java. What is a Computer?

Streams and File I/O

Objectives. Defining Classes and Methods. Objectives. Class and Method Definitions: Outline 7/13/09

Problem Solving through Programming In C Prof. Anupam Basu Department of Computer Science & Engineering Indian Institute of Technology, Kharagpur

Microsoft Visual Basic 2005: Reloaded

File Processing in Java

Chapter 1. Introduction to Programming and Visual Basic Pearson Addison-Wesley. All rights reserved. Addison Wesley is an imprint of

COMP-202: Foundations of Programming. Lecture 2: Java basics and our first Java program! Jackie Cheung, Winter 2016

Computer Hardware and Software Introduction. Mr. Smith AP Computer Science A

Chapter Goals. Chapter One: Introduction. Prerequisites. What Is Programming?

Assoc. Prof. Dr. Marenglen Biba. (C) 2010 Pearson Education, Inc. All rights reserved.

Chapter 1 Introduction to Computers, Programs, and Java

Defining Classes and Methods

Tutorial 1 CSC 201. Java Programming Concepts عؾادئماظربجمةمبادؿكدامماجلاصا

Programming with Java

Introduction to OOP Using Java Pearson Education, Inc. All rights reserved.

Using IDLE for

Java Basics Lecture: January 26, 2012 (On-line Lecture 1)

CHAPTER INTRODUCTION. Final Draft Oct. 15, Slides by Donald W. Smith TechNeTrain.com. Copyright 2013 by John Wiley & Sons. All rights reserved.

Chapter Goals. Contents. 1.1 Computer Programs

CSC116: Introduction to Computing - Java

Defining Classes and Methods

An Introduction to Software Engineering. David Greenstein Monta Vista High School

Introduction to Computers and Programming Languages. CS 180 Sunil Prabhakar Department of Computer Science Purdue University

Course Outline. Introduction to java

Wentworth Institute of Technology. Engineering & Technology WIT COMP1000. Java Basics

INTRODUCTION TO THE COURSE

Chapter 1 Getting Started

12/22/11. Java How to Program, 9/e. Help you get started with Eclipse and NetBeans integrated development environments.

Chapter 1 Lab Algorithms, Errors, and Testing

Computer Science II. OO Programming Classes Scott C Johnson Rochester Institute of Technology

Data Structures (list, dictionary, tuples, sets, strings)

Welcome to Solving Problems with Computers I

Methods. Methods. Mysteries Revealed

Transcription:

Walter Savitch Frank M. Carrano Introduction to Computers and Java Chapter 1

Objectives Overview computer hardware and software Introduce program design and objectoriented programming Overview the java programming language

Computer Basics: Outline Hardware and Memory Programs Programming Languages and Compilers Java Byte Code

Hardware and Software Computer systems consist of hardware and software. Hardware includes the tangible parts of computer systems. Software includes programs sets of instructions for the computer to follow. Familiarity with hardware basics helps us understand software.

Hardware and Memory Most modern computers have similar components including Input devices (keyboard, mouse, etc.) Output devices (display screen, printer, etc.) A processor Two kinds of memory (main memory and auxiliary memory).

The Processor Also called the CPU (central processing unit) or the chip (e.g. Pentium processor) The processor processes a program s instructions. It can process only very simple instructions. The power of computing comes from speed and program intricacy.

Memory Memory holds programs data for the computer to process the results of intermediate processing. Two kinds of memory main memory auxiliary memory Measured in bits, bytes, megabytes, gigabytes...

Main memory Used to store The current running program The data the program is using The results of intermediate calculations Also called RAM (Random Access Memory) Volatile not permanent Is overwritten when a program stops running

Auxiliary Memory Used to store: Program source code Data files Disk drives, CDs, DVDs etc. Nonvolatile Permanent

Main Memory Bit single digit (0 or 1) Byte 8 bits Each byte has a location called its address

Files Large groups of bytes in auxiliary memory are called files. Files have names and are organized into groups called directories or folders. Java programs are stored in files. Programs files are copied from auxiliary memory to main memory in order to be run.

Running a Program Program files are copied into main memory when a program is run The OS (Operating System Windows, Linux, MAC OS) loads and starts a program

Programming Languages High level languages are relatively easy to use Java, C#, C++, Visual Basic, Python, Ruby. Unfortunately, computer hardware does not understand high level languages. A high level language program must be translated into a low level language.

Compilers A compiler translates a program from a highlevel language to a low level language the computer can run. You compile a program by running the compiler on the high level language version of the program called the source program. Compilers produce machine or assemblylanguage programs called object programs. The Java compiler produces byte code, which is interpreted when a program is executed

Compiling and Running a Program

Applications and Applets Two kinds of java programs: applications and applets Applications Regular programs Meant to be run on your computer Applets Little applications Meant to be sent to another location on the internet and run there We will be writing applications

First Application Create a directory for this course mkdir java1 cd java1 Create a directory for examples from the book mkdir savitch cd savitch Create a subdirectory for chapter1 mkdir ch01 cd ch01

First Application Click the SavitchSrc link on the course webpage: http://www.sfs.uni tuebingen.de/~fr/teaching/ws09 10/java/ Download ch01/firstprogam.java to java1/savitch/ch01

First Application DrJava is an IDE (integrated development environment) Combines text editor with commands to compile and run java programs Start drjava Open FirstProgram.java Compile and run the program

Some Terminology programmer: person who writes programs user: person who interacts with the program package: library of classes that have been defined already. import java.util.scanner; argument(s): item(s) inside parenthesis variable: place to store data statement: instruction ends with ; syntax: grammar rules for a programming language

Printing to the Screen System.out.println ( Whatever you want to print ); System.out is an object for sending output to the screen. println is a method to print whatever is in parentheses to the screen. The object performs an action when you invoke or call one of its methods objectname.methodname(argumentsthemethodneeds);

Compiling Programs or Classes A Java program consists of one or more classes, which must be compiled before running the program. Each class should be in a separate file. The name of the file should be the same as the name of the class, with the extension.java Class FirstProgram is stored in file FirstProgram.java The compiler generates a file with the extension.class (FirstProgram.class)

Compiling and Running A Java program can involve any number of classes. The class to run will contain the words public static void main(string[] args) somewhere in the file

Object Oriented Programming Our world consists of objects (people, trees, cars, cities, airline reservations, etc.). Objects can perform actions which affect themselves and other objects in the world. Object oriented programming (OOP) treats a program as a collection of objects that interact by means of actions.

OOP Terminology Objects, appropriately, are called objects. Actions are called methods. Objects of the same kind have the same type and belong to the same class. Objects within a class have a common set of methods and the same kinds of data but each object can have it s own data values.

OOP Design Principles OOP adheres to three primary design principles: Encapsulation Polymorphism Inheritance

Introduction to Encapsulation The data and methods of class are encapsulated ( put in a capsule ) Only part of the capsule is accessible. Details of how the class works are hidden. Encapsulation often is called information hiding.

Accessibility Example An automobile consists of several parts and pieces and is capable of doing many useful things. Awareness of the accelerator pedal, the brake pedal, and the steering wheel is important to the driver. Awareness of the fuel injectors, the automatic braking control system, and the power steering pump is not important to the driver.

Introduction to Polymorphism From the Greek meaning many forms The same program instruction adapts to mean different things in different contexts. A method name, used as an instruction, produces results that depend on the class of the object that used the method. Analogy: take time to recreate causes different people to do different activities More about polymorphism in a later chapter

Introduction to Inheritance Inheritance is a way of organizing classes A class inherits all the characteristics of classes above it in the hierarchy At each level, classes become more specialized by adding more characteristics

Algorithms By designing methods, programmers provide actions for objects to perform. An algorithm describes a means of performing an action. Once an algorithm is defined, expressing it in Java (or in another programming language) usually is easy.

Algorithms An algorithm is a set of instructions for solving a problem. An algorithm must be expressed completely and precisely. Algorithms usually are expressed in English or in pseudocode.

Example: Total Cost of All Items Write the number 0 on the whiteboard. For each item on the list Add the cost of the item to the number on the whiteboard Replace the number on the whiteboard with the result of this addition. Announce that the answer is the number written on the whiteboard.

Reusable Components Most programs are created by combining components that exist already. Reusing components saves time and money. Reused components are likely to be better developed, and more reliable. New components should designed to be reusable by other applications.

Testing and Debugging Eliminate errors by avoiding them in the first place. Carefully design classes, algorithms and methods. Carefully code everything into Java. Test your program with appropriate test cases (some where the answer is known), discover and fix any errors, then retest.

Errors An error in a program is called a bug. Eliminating errors is called debugging. Three kinds or errors Syntax errors Runtime errors Logic errors

Syntax Errors Grammatical mistakes in a program The grammatical rules for writing a program are very strict The compiler catches syntax errors and prints an error message. Example: using a period where a program expects a comma

Runtime Errors Errors that are detected when your program is running, but not during compilation When the computer detects an error, it terminates the program and prints an error message. Example: attempting to divide by 0

Logic Errors Errors that are not detected during compilation or while running, but which cause the program to produce incorrect results Example: using subtraction where addition is required

Software Reuse Programs not usually created entirely from scratch Most contain components which already exist Reusable classes are used Design class objects which are general Java provides many classes Note documentation on following slide

Software Reuse Description of class Scanner Package names Class names