Lesson 2: First Java Programs

Slides:



Advertisements
Similar presentations
What is a Computer Program? For a computer to be able to do anything (multiply, play a song, run a word processor), it must be given the instructions.
Advertisements

Designing a Program & the Java Programming Language
Chapter 8 Improving the User Interface
Chapter 2 First Java Programs
Introduction To Java Objectives For Today â Introduction To Java â The Java Platform & The (JVM) Java Virtual Machine â Core Java (API) Application Programming.
Chapter 1 Introduction to JAVA. Why Learn JAVA? Java is one of the fastest growing programming language in the world. Java is one of the fastest growing.
 2005 Pearson Education, Inc. All rights reserved Introduction.
1 Chapter 2 Introduction to Java Applications Introduction Java application programming Display ____________________ Obtain information from the.
Client Side Programming Using Java Applet Outcomes: You will be expected to know: – Java Applets and HTML file; –bytecode and platform independent programs;
Slides prepared by Rose Williams, Binghamton University Chapter 1 Getting Started 1.1 Introduction to Java.
1 Fall 2008ACS-1903 Chapter 1 Topics Java History Java Programs Why Program? Computer Systems: Hardware and Software Programming Languages What Is a Program.
About the Presentations The presentations cover the objectives found in the opening of each chapter. All chapter objectives are listed in the beginning.
Chapter 7 Improving the User Interface
1 An Introduction to Visual Basic Objectives Explain the history of programming languages Define the terminology used in object-oriented programming.
1. 2 Chapter 1 Introduction to Computers, Programs, and Java.
Chapter 2 First Java Programs
Computer Programming 12 Mr. Jean March 3 rd, 2014.
1 Chapter One A First Program Using C#. 2 Objectives Learn about programming tasks Learn object-oriented programming concepts Learn about the C# programming.
1.1 History of Computers 1940s: The ENIAC was one of the world’s first computers. Large stand-alone machine Used large amounts of electricity Contained.
Introducing Java.
Introduction to Python Dr. Bernard Chen Ph.D. University of Central Arkansas July 9 th 2012
© The McGraw-Hill Companies, 2006 Chapter 1 The first step.
A First Program Using C#
COMPUTER SOFTWARE Section 2 “System Software: Computer System Management ” CHAPTER 4 Lecture-6/ T. Nouf Almujally 1.
Microsoft Visual Basic 2005: Reloaded Second Edition
Lesson 7: Improving the User Interface
(C) 2010 Pearson Education, Inc. All rights reserved.  Java programs normally go through five phases  edit  compile  load  verify  execute.
Android How to Program, 2/e © Copyright by Pearson Education, Inc. All Rights Reserved.
Chapter 1: A First Program Using C#. Programming Computer program – A set of instructions that tells a computer what to do – Also called software Software.
1 Chapter 2 First Java Programs Fundamentals of Java: AP Computer Science Essentials, 4th Edition Lambert / Osborne.
Computer Programming 12 Mr. Jean March 19 th, 2013.
Introduction to Computers and Java Chapter 1.3. A Sip of Java: Outline History of the Java Language Applets A First Java Program Compiling a Java Program.
Chapter 1 CSIS-120: Java Intro. What is Programming?  A: It is what makes computer so useful.  The flexibility of a computer is amazing  Write a term.
1 Module Objective & Outline Module Objective: After completing this Module, you will be able to, appreciate java as a programming language, write java.
Lesson 2: First Java Programs. Objectives: –Discuss why Java is an important programming language. –Explain the Java virtual machine and byte code. –Choose.
Jaeki Song ISQS6337 JAVA Lecture 03 Introduction to Java -The First Java Application-
© 2012 Pearson Education, Inc. All rights reserved. 1-1 Why Java? Needed program portability – Program written in a language that would run on various.
POS 406 Java Technology And Beginning Java Code
Intro and Review Welcome to Java. Introduction Java application programming Use tools from the JDK to compile and run programs. Videos at
Chapter 3 Syntax, Errors, and Debugging Fundamentals of Java.
About the Presentations The presentations cover the objectives found in the opening of each chapter. All chapter objectives are listed in the beginning.
CHAPTER 3 GC Java Fundamentals. 2 BASICS OF JAVA ENVIRONMENT  The environment  The language  Java applications programming Interface API  Various.
Chapter 1 Section 1.1 Introduction to Java Slides prepared by Rose Williams, Binghamton University Kenrick Mock, University of Alaska Anchorage.
 Pearson Education, Inc. All rights reserved Introduction to Java Applications.
1 Chapter 3 Syntax, Errors, and Debugging Fundamentals of Java: AP Computer Science Essentials, 4th Edition Lambert / Osborne.
Copyright © Mohamed Nuzrath Java Programming :: Syllabus & Chapters :: Prepared & Presented By :: Mohamed Nuzrath [ Major In Programming ] NCC Programme.
JAVA PROGRAMMING WITH ECLIPSE PART 1 PLEASE READ ALL THE CONTENT ON THE SLIDES. WATCH THE RECOMMENDED VIDEOS LISTED.
Chapter 3 Syntax, Errors, and Debugging Fundamentals of Java.
Chapter 2 Input, Variables and Data Types. JAVA Input JAVA input is not straightforward and is different depending on the JAVA environment that you are.
Chapter 2 An Intro to Java and Your First Program What is Java? Advantages of Java Four Steps for Creating and Running a Java Program Framework of a Simple.
By Mr. Muhammad Pervez Akhtar
© 2012 Pearson Education, Inc. All rights reserved types of Java programs Application – Stand-alone program (run without a web browser) – Relaxed.
Creating a Java Application and Applet
Microsoft Visual Basic 2008: Reloaded Third Edition Chapter One An Introduction to Visual Basic 2008.
Execution ways of program References: www. en.wikipedia.org/wiki/Integrated_development_environment  You can execute or run a simple java program with.
Microsoft Visual Basic 2012: Reloaded Fifth Edition Chapter One An Introduction to Visual Basic 2012.
Programming Languages Concepts Chapter 1: Programming Languages Concepts Lecture # 4.
Chapter 2 First Java Programs Fundamentals of Java.
Some of the utilities associated with the development of programs. These program development tools allow users to write and construct programs that the.
1 Sections Java Virtual Machine and Byte Code Fundamentals of Java: AP Computer Science Essentials, 4th Edition Lambert / Osborne.
Lesson 2: First Java Programs. 2.1 Why Java? Java is one of the most popular programming languages in the world. Java is a modern object-oriented programming.
2.5 Edit, Compile, and Execute Figure 2-3 illustrates the edit, compile and execute steps. Java bytecode.
Sung-Dong Kim, Dept. of Computer Engineering, Hansung University Java - Introduction.
Introduction to Algorithm. What is Algorithm? an algorithm is any well-defined computational procedure that takes some value, or set of values, as input.
Chapter 3 Syntax, Errors, and Debugging
Text by: Lambert and Osborne
Chapter 2 First Java Programs
Java programming lecture one
MSIS 655 Advanced Business Applications Programming
Computer Programming-1 CSC 111
Presentation transcript:

Lesson 2: First Java Programs

Lesson 2: First Java Programs Objectives: Discuss why Java is an important programming language. Explain the Java virtual machine and byte code. Choose a user interface style. Describe the structure of a simple Java program.

Lesson 2: First Java Programs Objectives: Write a simple program. Edit, compile, and run a program using a Java development environment. Format a program to give a pleasing, consistent appearance. Understand compile-time errors. Write a graphics program.

Lesson 2: First Java Programs Vocabulary: Applet Assignment operator Byte code DOS development environment Graphical user interface (GUI) Hacking Import statement Integrated development environment (IDE) Interpreter Java virtual machine(JVM) Just-in-time compilation (JIT) Panel Panes Parameter Source code Statement Terminal I/O interface Variable

2.1 Why Java? Java is the fastest growing programming language in the world. Java is a modern object-oriented programming language. Java has benefited by learning from the less desirable features of early object- oriented programming languages.

2.1 Why Java? Java is ideal for distributed, network-based applications. Secure: Virus-free, tamper-free systems. Robust: Supports development of programs that do not overwrite memory. Portable: Yields programs that can be run on different computer types.

2.1 Why Java? Java is ideally suited to develop distributed, network-based applications because it: Enables the construction of virus-free, tamper-free systems (security) Supports the development of programs that do not overwrite memory (robust) Yields programs that can be run on different types of computers without change (portable)

2.1 Why Java? Java supports advanced programming concepts such as threads. A thread is a process that can run concurrently with other processes. Java resembles C++, the world’s most popular industrial strength programming language. Java however, runs more slowly than most modern programming languages because it is interpreted.

2.2 The Java Virtual Machine and Byte Code Java compilers translate Java into pseudomachine language called java byte code. To run java byte code on a particular computer, a Java virtual machine (JVM) must be installed.

2.2 The Java Virtual Machine and Byte Code A Java virtual machine is a program that runs like a computer. It is called an interpreter. Disadvantage: Runs more slowly than an actual computer To combat slower processing, some JVMs translate code when first encountered. This is known as just-in-time compilation (JIT).

2.2 The Java Virtual Machine and Byte Code Advantages: Portability. Any computer can run an interpreter. This makes byte code portable. Applets. Applets are small Java programs already translated into byte code. Applets run in a JVM incorporated in a web browser Applets can be decorative (like animated characters on a web page.) Applets can be practical (like continuous streams of stock market quotes.) Security. It is possible to limit the capabilities of a Java program since it runs inside a virtual machine.

2.2 The Java Virtual Machine and Byte Code Advantages: JVMs are getting faster. Using JIT (just-in-time) compilations, which translate byte code into machine language.

2.3 Choosing a User Interface Style There are two types of user interfaces available to use to create Java programs. Graphical User Interface (GUI) Terminal I/O interface Figure 2-1 illustrates both interfaces used to create the same program.

2.3 Choosing a User Interface Style Graphical user interface (GUI)

2.3 Choosing a User Interface Style Terminal I/O user interface

2.3 Choosing a User Interface Style There are 3 reasons for beginning with terminal I/O: It is easier to implement than a GUI There are programming situations that require terminal I/O Terminal-oriented programs are similar in structure to programs that process files of sequentially organized data. (What is learned here is easily transferred to that setting.)

2.4 HelloWorld Figure 2-2 displays the results of a small Java program, entitled “HelloWorld”

2.4 HelloWorld A program is a sequence of instructions for a computer. The following is the bulk of instructions, or source code, for the HelloWorld” program.

<name of object>.<name of message>(<parameters>) 2.4 HelloWorld The Explanation: System.out is an object that displays characters in a terminal window. println is the message being sent to the object. The quotations indicate what is to be displayed. Semicolons mark the end of each statement. The characters between the parentheses are the parameters. The period (.) is the method selector operator. Sending messages to objects always takes the following form: <name of object>.<name of message>(<parameters>)

2.4 HelloWorld The Larger Framework: The program must be embedded in several lines of code, such as: Program comments are in green, reserved words in blue, and code in black.

2.5 Edit, Compile, and Execute Figure 2-3 illustrates the edit, compile and execute steps.

2.5 Edit, Compile, and Execute The programmer uses a word processor or editor to enter the source code. Save it as a text file with the extension .java. Compile The programmer invokes the Java language compiler. Translates the source code into Java byte code. Execute The programmer instructs the JVM to load the byte code into memory and execute. The user and program can now interact.

2.5 Edit, Compile, and Execute Development environments: Unix standard text editor command line activation of compiler and JVM DOS, using Microsoft Windows and NT OS notepad text editor command line activation of compiler and JVM from a DOS window Integrated development environment, using Windows, NT, or MAC OS Examples: Symantec’s Visual Café, Microsoft’s Visual J++, NetBeans, or Borland’s J Builder

2.5 Edit, Compile, and Execute Unix or Linux Standard text editor Free Microsoft Windows Notepad and DOS window Integrated development environment (IDE) BlueJ, Eclipse, or JGrasp Not free, but combines editor, compiler, debugger, and JVM

2.5 Edit, Compile, and Execute Preparing your development environment: Create a directory, open a terminal window, use the cd command to move to your new directory Open notepad, create the file HelloWorld.java, type in the lines of code Save the file, go back to the terminal window, compile the program Run the program

2.5 Edit, Compile, and Execute The program as typed into Notepad

2.5 Edit, Compile, and Execute The following figures illustrate the steps necessary for preparing your development environment.

2.5 Edit, Compile, and Execute Compile-Time Errors: Mistakes detected by the compiler are called syntax errors or compile-time errors. Typos made when editing. Compiler prints a list of errors in the terminal window.

2.5 Edit, Compile, and Execute Readability: Programs may be maintained by other people. Layout affects readability. Use indentation, blank lines, and spaces.

2.5 Edit, Compile, and Execute

2.6 Temperature Conversion View the program’s source code: import java.util.Scanner; public class Convert { public static void main (String [ ] args) Scanner reader = new Scanner(System.in); // This allows the user // to enter data from // the keyboard double fahrenheit; // The temperature in // Fahrenheit double celsius; // The temperature in // Celsius System.out.print(“Enter degrees Fahrenheit: ”); fahrenheit = reader.readDouble(); celsius = (Fahrenheit – 32.0) * 5.0 / 9.0; System.out.print(“The equivalent in Celsius is ”); System.out.println(celsius);   } }

2.6 Temperature Conversion The following is an explanation of the program code: Import statement Instantiate or create an object Declare the variables Position the cursor after “Enter degrees Fahrenheit” Assignment operators Assignment statements are evaluated Print text (and position the cursor) Print the value of the variable Statement to prevent the terminal window from disappearing from the display (optional, only needed with certain development environments)

2.6 Temperature Conversion Temperature conversion program reads user input and performs computations. The first line of code is an import statement. Variables for Fahrenheit and Celsius. Assignment statements use an operator such as *, /, +, and -.

2.6 Temperature Conversion Variables and objects used in the conversion program.

2.7 Graphics and GUIs: Windows and Panels A Simple Application Window: Graphics and GUI programs in Java can be stand-alone applications or applets. Consistent features: Title bar with controls (maximize, zoom, etc.) Width and height can be resized Code for application windows is in the class Jframe. JFrame responds to messages to set the title bar and window size.

2.7 Graphics and GUIs: Windows and Panels Some commonly used JFrame methods

2.7 Graphics and GUIs: Windows and Panels Panels and Colors: A Jframe has a container or pane to fill with objects. A panel is a rectangle used to display objects such a shapes and images. Panes are panels that contain related objects such as images and widgets. Colors in most computer system use RGB. Red, green, blue Values 0-255

2.7 Graphics and GUIs: Windows and Panels Layout Managers and Multiple Panels: Each container object uses a layout manager to control panel placement. BorderLayout class allows arrangement of up to five objects. North, south, east, west, center GridLayout uses rows and columns to arrange objects.

Summary In this chapter, you learned: Java is the fastest growing programming language in the world. It is secure, robust, and portable. It is also similar to C++, the world’s most popular programming language.

Summary The Java compiler translates Java into a pseudomachine language called Java byte code. Byte code can be run on any computer that has a Java virtual machine installed. The Java virtual machine (JVM) is a program that behaves like a computer—an interpreter. Java programs include variables, arithmetic expressions, statements, objects, messages, and methods.

Summary Three basic steps in the coding process are editing, compiling, and running a program using a Java development environment. Programmers should pay attention to a program’s format to ensure readability.

Summary Java programs accomplish many tasks by sending messages to objects. Examples are sending text to the terminal window for output and receiving input data from the keyboard. There are several user interface styles, among them terminal based and graphical based.

THE END