This document discusses expressions in Java programming. It defines an expression as consisting of terms joined by operators, where terms can be constants, variables, method calls, or parenthesized expressions. It describes Java's primitive data types and the common arithmetic, relational, and logical operators used to build expressions. It also covers topics like variable declarations, assignment statements, precedence rules, and boolean expressions. The goal is to introduce fundamental concepts for writing clear and maintainable Java code.
The document discusses various Java programming concepts including comments, identifiers, keywords, primitive data types, variables, objects, and access modifiers. It provides examples and definitions for each concept. The key points covered are the eight primitive data types in Java (boolean, char, byte, short, int, long, float, double), how to declare and initialize variables, how to construct objects using the new keyword, and the differences between public, private, protected, default, final, and abstract access modifiers.
This document provides an overview of key concepts related to writing classes in Java, including:
- Defining classes to create custom objects with state (data) and behaviors (methods)
- Encapsulation and using access modifiers like public and private to control visibility
- Declaring methods, parameters, and return types
- Overloading methods by having multiple methods with the same name but different parameters
- Constructors for initializing new objects
This document provides an overview of Java programming basics, including application structure, data types, variables, expressions, operators, and comments. Key points include: all Java programs must contain at least one class; variables are used to store and name data; the basic data types are byte, short, int, long, float, double, char, and boolean; expressions use operators to manipulate data; and comments are used to explain code to others.
This document discusses key concepts from Chapter 2 of the textbook "Java Software Solutions for AP Computer Science" including:
- Objects and classes, and how classes are used to create multiple objects that represent the same concept
- Primitive data types like int, double, boolean and how they store different types of values
- Variables, how they are declared and used to store and work with data
- Arithmetic expressions and operators like +, -, *, / and their precedence
- Assignment statements and how variables on the left side of = are updated with values from the right side
This document summarizes key object oriented concepts in C++ across two chapters.
Chapter 1 discusses object oriented concepts like encapsulation, polymorphism, inheritance and their differences. It also lists advantages of OOP like reusability and security through data hiding.
Chapter 2 provides an overview of C++ tokens, data types, variables, constants, operators and basic statements. It describes keywords, identifiers, user-defined types like structures and enumerations. Storage classes, pointers, arrays and derived types are also covered.
The document comprehensively covers fundamental concepts to understand object oriented programming using C++.
The document discusses the eight primitive data types in Java - boolean, char, byte, short, int, long, float, and double. It explains what each type is used for, their possible value ranges, and when to use each type. Key points covered include int being the preferred integer type, double the preferred real number type, and the importance of declaring variables before use and giving them initial values.
This document discusses key concepts in Java programming including classes, methods, parameters, and invoking methods. It explains that a program consists of classes, a class contains methods, and a method contains statements. Methods can take parameters, which are initialized when the method is called and allow passing in values. Parameters act similarly to local variables but are declared in the method signature.
Java is an object-oriented programming language. It has keywords, primitive data types like int and double, and variables that are declared with a type. Variables can be initialized statically at declaration or dynamically later. Constants are declared with final and can't be changed.
FellowBuddy.com is a platform which has been setup with a simple vision, keeping in mind the dynamic requirements of students.
Our Vision & Mission - Simplifying Students Life
Our Belief - The great breakthrough in your life comes when you realize it, that you can learn anything you need to learn; to accomplish any goal that you have set for yourself. This means there are no limits on what you can be, have or do.
Like Us - https://www.facebook.com/FellowBuddycom-446240585585480
This document discusses Ruby data types including numbers, text, arrays, hashes, ranges, symbols, and objects. It provides details on integer and float numbers, strings, string operations, arrays and common array methods, hashes and hash syntax, ranges and how they work, symbols and how they differ from strings, and Ruby objects and operations like equal?, conversions and tainting objects.
The document provides an overview of Strings and StringBuilders in Java. It discusses Strings as immutable objects and how StringBuilders can be more efficient for modifying strings. It also covers common String and StringBuilder methods, when to use each, and exceptions in Java using try/catch blocks.
This document provides an overview of character and string processing in Java, including defining and manipulating character data, using the String, StringBuilder, and StringBuffer classes, regular expressions for pattern matching, and examples of counting vowels, finding words, and replacing characters in strings. It also describes writing an application to build a word concordance from a document by reading a file, creating a word list, and saving the output.
This document provides an overview of key concepts in Java programming including:
- Comments can be added using //, /* */, or /** */.
- Java has primitive data types like int, double, boolean and reference types like String.
- Variables are declared with a type and initialized through assignment.
- Operators perform tasks like arithmetic, comparison, and assignment.
- Control flow is managed through conditionals like if/else and loops like for.
- Arrays store multiple values of the same type and can be one or multi-dimensional.
iOS development Crash course in how to build an native application for iPhone.
i will be start from beginning till publishing on Apple Store step by step.
this session # 1 after the intro
Don't be fooled by the thumbnail - the first couple of slides are a silly joke I forgot to remove before uploading.
Presentation derived from the "What's new in Python 2.4" document on http://www.python.org/ including much reformatting for presenting and presenter notes.
Please download the Keynote original - that way the presentation notes aren't burned into the slides.
This document discusses Java programming concepts such as data types, variables, expressions, statements, and scope. It covers the 8 primitive data types in Java including integer, floating point, boolean, and character types. It describes literals for integer and real number values. The document also discusses type conversion and promotion that can occur during expression evaluation in Java.
Presentation derived from the "What's new in Python 2.5" document on http://www.python.org/ including much reformatting for presenting and presenter notes.
Please download the Keynote original - that way the presentation notes aren't burned into the slides.
Chapter 3 introduces several Java program statements:
- Conditional statements like if-else allow programs to make decisions based on boolean expressions.
- Loops like while and for allow code to repeat based on conditions.
- Logical operators like && and || combine boolean expressions.
- Proper program design is important, involving requirements, design, implementation, and testing stages.
Java has two types of data types - primitive and non-primitive. Primitive types include integer, character, boolean, and floating point types like float and double which are used to represent numbers with decimals. Non-primitive types include classes, interfaces, and arrays. A variable in Java is a memory location that can store a value, and there are different types of variables including instance variables, class variables, local variables, and parameters. Variables are declared with a data type and name, and can be initialized with a value.
C++ provides several fundamental and derived data types to store and represent different types of data. Fundamental data types include integers, characters, floats, doubles, and void. Integers can be further classified as short, int, long and modified with signed or unsigned. Characters can also be signed or unsigned. Floats and doubles represent real numbers with different levels of precision. Derived data types include arrays to store multiple values of the same type, structures to group different data types, unions to access memory in different types, enumerations to define named integer constants, classes to define user-defined types with methods and pointers to reference memory locations.
This chapter discusses:
1. Program flow control and statements like conditionals and loops that alter normal linear execution.
2. Conditional statements like if/else that allow choosing which statement executes based on a boolean condition.
3. Repetition statements like while and for loops that repeatedly execute a statement as long as/for as long as a condition is true.
The document discusses Java's primitive data types including their ranges and literal constants. It covers char, boolean, byte, short, int, long, float, and double data types. It also discusses variables, symbolic constants, and arithmetic operators.
Data types in java | What is Datatypes in Java | Learning with RD | Created b...rahuldaredia21
油
In this presentation , i will present a what are the datatypes in java? in brief and use easy world to understand easily about datatype but more important think in this presentation is diagram because any types of topic like In Byte understand in theory but easily understand in only diagrams and all about details of byte and also in case all datatypes in java give understand in diagrams then also watch video on youtube to understand more about datatypes link in this description .
https://youtu.be/pOBS9wBXVjY
click on link and watch this video understand datatypes easily.
THANK YOU
This document provides an overview of Java basics including keywords, data types, variables, and constants. It discusses object-oriented programming concepts like objects, classes, encapsulation, inheritance, and polymorphism. It also describes the primitive data types in Java like integer, floating-point, character, and boolean types. Finally, it covers identifiers, keywords, constants, and variables in Java.
The document discusses static methods, static variables, and wrapper classes in Java. Static methods can be called without creating an object and belong to the class itself. A static variable is shared among all instances of a class. Wrapper classes allow primitive types to be used as object types and contain useful constants and conversion methods.
The document discusses arrays in Java. It defines arrays as ordered lists that store multiple values of the same type. Arrays allow accessing elements using indexes, and declaring arrays involves specifying the type and size. The document covers key array concepts like initialization, bounds checking, passing arrays as parameters, multidimensional arrays, and sorting and searching arrays.
The document introduces the Iron Man Landscape Series of utility trailers from New Gen Trailers. Key features of the trailers include tread plate steel fenders, LED lighting, 2000 lb jack, 3500 lb rear brake axle, and 205/75R15 tires. The trailers come in 12', 14', and 16' deck lengths with 7000 lb GVWR. Powder coat finish is standard on all models. Optional equipment includes radial tires, spare tire mounting, mesh sides, and a 2' beaver tail. A 24 month warranty covers defects in materials and workmanship.
FellowBuddy.com is a platform which has been setup with a simple vision, keeping in mind the dynamic requirements of students.
Our Vision & Mission - Simplifying Students Life
Our Belief - The great breakthrough in your life comes when you realize it, that you can learn anything you need to learn; to accomplish any goal that you have set for yourself. This means there are no limits on what you can be, have or do.
Like Us - https://www.facebook.com/FellowBuddycom-446240585585480
This document discusses Ruby data types including numbers, text, arrays, hashes, ranges, symbols, and objects. It provides details on integer and float numbers, strings, string operations, arrays and common array methods, hashes and hash syntax, ranges and how they work, symbols and how they differ from strings, and Ruby objects and operations like equal?, conversions and tainting objects.
The document provides an overview of Strings and StringBuilders in Java. It discusses Strings as immutable objects and how StringBuilders can be more efficient for modifying strings. It also covers common String and StringBuilder methods, when to use each, and exceptions in Java using try/catch blocks.
This document provides an overview of character and string processing in Java, including defining and manipulating character data, using the String, StringBuilder, and StringBuffer classes, regular expressions for pattern matching, and examples of counting vowels, finding words, and replacing characters in strings. It also describes writing an application to build a word concordance from a document by reading a file, creating a word list, and saving the output.
This document provides an overview of key concepts in Java programming including:
- Comments can be added using //, /* */, or /** */.
- Java has primitive data types like int, double, boolean and reference types like String.
- Variables are declared with a type and initialized through assignment.
- Operators perform tasks like arithmetic, comparison, and assignment.
- Control flow is managed through conditionals like if/else and loops like for.
- Arrays store multiple values of the same type and can be one or multi-dimensional.
iOS development Crash course in how to build an native application for iPhone.
i will be start from beginning till publishing on Apple Store step by step.
this session # 1 after the intro
Don't be fooled by the thumbnail - the first couple of slides are a silly joke I forgot to remove before uploading.
Presentation derived from the "What's new in Python 2.4" document on http://www.python.org/ including much reformatting for presenting and presenter notes.
Please download the Keynote original - that way the presentation notes aren't burned into the slides.
This document discusses Java programming concepts such as data types, variables, expressions, statements, and scope. It covers the 8 primitive data types in Java including integer, floating point, boolean, and character types. It describes literals for integer and real number values. The document also discusses type conversion and promotion that can occur during expression evaluation in Java.
Presentation derived from the "What's new in Python 2.5" document on http://www.python.org/ including much reformatting for presenting and presenter notes.
Please download the Keynote original - that way the presentation notes aren't burned into the slides.
Chapter 3 introduces several Java program statements:
- Conditional statements like if-else allow programs to make decisions based on boolean expressions.
- Loops like while and for allow code to repeat based on conditions.
- Logical operators like && and || combine boolean expressions.
- Proper program design is important, involving requirements, design, implementation, and testing stages.
Java has two types of data types - primitive and non-primitive. Primitive types include integer, character, boolean, and floating point types like float and double which are used to represent numbers with decimals. Non-primitive types include classes, interfaces, and arrays. A variable in Java is a memory location that can store a value, and there are different types of variables including instance variables, class variables, local variables, and parameters. Variables are declared with a data type and name, and can be initialized with a value.
C++ provides several fundamental and derived data types to store and represent different types of data. Fundamental data types include integers, characters, floats, doubles, and void. Integers can be further classified as short, int, long and modified with signed or unsigned. Characters can also be signed or unsigned. Floats and doubles represent real numbers with different levels of precision. Derived data types include arrays to store multiple values of the same type, structures to group different data types, unions to access memory in different types, enumerations to define named integer constants, classes to define user-defined types with methods and pointers to reference memory locations.
This chapter discusses:
1. Program flow control and statements like conditionals and loops that alter normal linear execution.
2. Conditional statements like if/else that allow choosing which statement executes based on a boolean condition.
3. Repetition statements like while and for loops that repeatedly execute a statement as long as/for as long as a condition is true.
The document discusses Java's primitive data types including their ranges and literal constants. It covers char, boolean, byte, short, int, long, float, and double data types. It also discusses variables, symbolic constants, and arithmetic operators.
Data types in java | What is Datatypes in Java | Learning with RD | Created b...rahuldaredia21
油
In this presentation , i will present a what are the datatypes in java? in brief and use easy world to understand easily about datatype but more important think in this presentation is diagram because any types of topic like In Byte understand in theory but easily understand in only diagrams and all about details of byte and also in case all datatypes in java give understand in diagrams then also watch video on youtube to understand more about datatypes link in this description .
https://youtu.be/pOBS9wBXVjY
click on link and watch this video understand datatypes easily.
THANK YOU
This document provides an overview of Java basics including keywords, data types, variables, and constants. It discusses object-oriented programming concepts like objects, classes, encapsulation, inheritance, and polymorphism. It also describes the primitive data types in Java like integer, floating-point, character, and boolean types. Finally, it covers identifiers, keywords, constants, and variables in Java.
The document discusses static methods, static variables, and wrapper classes in Java. Static methods can be called without creating an object and belong to the class itself. A static variable is shared among all instances of a class. Wrapper classes allow primitive types to be used as object types and contain useful constants and conversion methods.
The document discusses arrays in Java. It defines arrays as ordered lists that store multiple values of the same type. Arrays allow accessing elements using indexes, and declaring arrays involves specifying the type and size. The document covers key array concepts like initialization, bounds checking, passing arrays as parameters, multidimensional arrays, and sorting and searching arrays.
The document introduces the Iron Man Landscape Series of utility trailers from New Gen Trailers. Key features of the trailers include tread plate steel fenders, LED lighting, 2000 lb jack, 3500 lb rear brake axle, and 205/75R15 tires. The trailers come in 12', 14', and 16' deck lengths with 7000 lb GVWR. Powder coat finish is standard on all models. Optional equipment includes radial tires, spare tire mounting, mesh sides, and a 2' beaver tail. A 24 month warranty covers defects in materials and workmanship.
This document appears to be a collection of captions from photos taken over the first year of Neema's life. It describes her first birthday party and celebrations, family visits over holidays like Thanksgiving and Christmas, trips to see extended family in places like Buffalo and Greenville, and enjoying activities like swimming, playing at the beach, and spending time with loved ones. The captions express how loved and cared for Neema feels growing up surrounded by family.
This document advertises La Prima Catering's services for personalized event planning including custom menus and fresh ideas, with an experienced staff to create memorable events such as corporate catering, holiday parties, weddings, galas, benefits, and private entertaining. Mentioning this ad provides 10% off the first order of $500 or more by 3/15/11.
The document summarizes the causes and results of the U.S.-Mexico War from 1846 to 1848. The war was caused by disputes over the border between Texas and Mexico after Texas gained independence, with the U.S. claiming the Rio Grande border and Mexico claiming the Nueces River. The U.S. also wanted to expand its territory westward. As a result, Mexico ceded over a third of its territory in the northern Mexican Cession to the U.S., giving up claims to modern day California, Arizona, Nevada, Utah, and parts of Colorado and New Mexico, in exchange for $15 million and debt forgiveness.
This document provides an overview of major developments in Europe between 1450-1750, including the Protestant Reformation, Scientific Revolution, Enlightenment, rise of absolute monarchy and new economic systems. It discusses changes in religion, politics, society, culture, science and philosophy that transformed Europe during this period. Key events and thinkers such as Martin Luther, Galileo, Descartes, Locke, Adam Smith and others are summarized along with the impact of their ideas.
The document discusses the various British Board of Film Classification (BBFC) ratings for films in the UK. It explains the criteria for each rating level - U, PG, 12A, 12, 15, and 18 - in terms of what types of content are considered appropriate and permitted at each rating level. For example, a U rating means a film is suitable for all audiences, while an 18 rating means a film cannot be viewed by anyone under 18 due to explicit content such as strong violence, sexual violence, or discriminatory language. The document concludes that the author's film opening will likely receive a 15 rating in the UK due to containing horror elements with violence and strong language, but not as much gore or behavior as an
El documento informa sobre la exitosa subasta de caf辿s especiales de Honduras, donde por primera vez el precio alcanz坦 los US$25.20 la libra, un r辿cord para el pa鱈s. 22 caf辿s ganaron la subasta y se vendieron a Jap坦n, EE.UU., Australia y Europa por un precio promedio de US$9.40 la libra. La finca La Huerta obtuvo el precio m叩s alto de US$25.20 la libra y tambi辿n gan坦 el concurso "Taza de la Excelencia 2013". Como reconocimiento, la Asociaci坦n de Caf辿s Especiales de Hond
Let's explore some other fundamental programming concepts
Chapter 2 focuses on:
character strings
primitive data
the declaration and use of variables
expressions and operator precedence
data conversions
This document provides an overview of key concepts in Java programming including:
1) The components of a Java program such as statements, blocks, classes, and methods.
2) How to structure Java source code files with classes and the main method.
3) Common elements in Java programs like variables, data types, operators, and comments.
4) Details on specific concepts like declaring and initializing variables, arithmetic operators, and increment/decrement operators.
This document provides an overview of various tokens and data types in the C programming language. It discusses keywords, identifiers, constants, strings, operators, variables, declarations, type conversions, and precedence rules. The key topics covered are:
- The basic tokens in C including keywords, identifiers, constants, strings, and white spaces.
- Integral and floating point data types such as int, char, float, and double.
- Rules for naming variables and declaring variables globally or locally.
- Arithmetic, relational, and logical operators in C and their precedence.
- Automatic and explicit type conversions between different data types.
Chapter 01 Introduction to Java by Tushar B KuteTushar B Kute
油
The lecture was condcuted by Tushar B Kute at YCMOU, Nashik through VLC orgnanized by MSBTE. The contents can be found in book "Core Java Programming - A Practical Approach' by Laxmi Publications.
This document provides an introduction to the Java programming language. It discusses Java's evolution and history from 1991 to present. It also covers Java fundamentals including data types, operators, decision making and looping constructs, classes and objects, arrays and strings. The document is intended as an overview of the major topics and features in Java.
The document provides an overview of the Java programming language and platform. It discusses the Java language basics including variables, operators, control flow statements, and primitive data types. It also covers object-oriented programming concepts, classes and objects, exceptions, and concurrency. Finally, it outlines the Java platform components including the Java Virtual Machine and Java API.
The document discusses tokens in the C programming language including keywords, identifiers, constants, string literals, operators, and white spaces. It also summarizes basic data types in C like integer and floating point types. Integer types include char, short int, int, and long int. Floating point types include float and double. The document then discusses numerical constants, character/string constants, variables, declarations, and global vs local variables.
Chapter-2 is for tokens in C programmingz9819898203
油
The document discusses tokens in the C programming language including keywords, identifiers, constants, string literals, operators, and white spaces. It also summarizes basic data types in C like integral types (char, short, int, long), floating point numbers (float, double), and how they are represented. It then covers numerical constants, character/string constants, variables, declarations of global and local variables, and arithmetic, relational, and logical operators in C.
The document discusses types, operators, and expressions in C programming. It covers various data types in C like integers, characters, and floating-point numbers. It also describes different operators for arithmetic, relational, logical, and bitwise operations. Finally, it discusses constants, format specifiers for input/output functions, variable declarations, and assignment operators.
The document defines various tokens in the C programming language including keywords, identifiers, constants, string literals, operators, data types, and variables. It discusses the basic data types like integers, floating point numbers, and characters. It also covers topics like declarations, global and local variables, type conversions, precedence and order of evaluation, and various operators used in C.
The document discusses various data types in C++. It explains that data types define the type of data stored in variables and associated operations. There are fundamental data types like integer, character, float, double, and void provided by C++. User-defined data types include arrays, pointers, references, structures, unions, classes and enumerations. The document provides details on the size and range of standard data types like short int, int, long, float, double etc. It also explains various type modifiers and derived data types.
The document provides an overview of key concepts in the C programming language, including:
- Data types, variables, constants, and arrays. Arrays must be declared before use with the format data-type variable-name[size]. Two dimensional arrays are supported.
- Storage classes like automatic, external/global, static, and register that determine variable scope, lifetime, and memory location.
- Functions and different ways they can be called in C - call by value where copies of arguments are passed, and call by reference where addresses of variables are passed.
Introduction to Java Basics Programming Java Basics-I.pptxSANDHYAP32
油
03 expressions.ppt
1. The Art and Science of
Java
An Introduction
to Computer Science
ERIC S. ROBERTS
CHAPTER 3
Expressions
Whats twice eleven? I said to Pooh.
(Twice what? said Pooh to Me.)
I think that it ought to be twenty-two.
Just what I think myself, said Pooh.
A. A. Milne, Now We Are Six, 1927
3.1 Primitive data types
3.2 Constants and variables
3.3 Operators and operands
3.4 Assignment statements
3.5 Boolean expressions
3.6 Designing for change
2. Expressions in Java
The heart of the Add2Integers program from Chapter 2 is
the line
int total = n1 + n2;
that performs the actual addition.
The n1 + n2 that appears to the right of the equal sign is an
example of an expression, which specifies the operations
involved in the computation.
An expression in Java consists of terms joined together by
operators.
Each term must be one of the following:
A constant (such as 3.14159265 or "hello, world")
A variable name (such as n1, n2, or total)
A method calls that returns a values (such as readInt)
An expression enclosed in parentheses
3. Primitive Data Types
Although complex data values are represented using objects,
Java defines a set of primitive types to represent simple data.
Of the eight primitive types available in Java, the programs in
this text use only the following four:
int This type is used to represent integers, which are whole
numbers such as 17 or 53.
double This type is used to represent numbers that include a decimal
fraction, such as 3.14159265. In Java, such values are called
floating-point numbers ; the name double comes from the
fact that the representation uses twice the minimum precision.
boolean This type represents a logical value (true or false).
char This type represents a single character and is described in
Chapter 8.
4. Summary of the Primitive Types
A data type is defined by a set of values called the domain and a
set of operations . The following table shows the data domains
and common operations for all eight of Javas primitive types:
Type Domain Common operations
byte 8-bit integers in the range 128 to 127 The arithmetic operators:
+ add * multiply
- subtract / divide
short 16-bit integers in the range 32768 to 32767
% remainder
32-bit integers in the range The relational operators:
int 2146483648 to 2146483647 != not equal
= = equal to
64-bit integers in the range < less than <= less or equal
long 9223372036754775808 to 9223372036754775807 > greater than >= greater or equal
32-bit floating-point numbers in the range
float
賊 1.4 x 10-45 to 賊 3.4028235 x 10-38 The arithmetic operators except %
64-bit floating-point numbers in the range The relational operators
double
賊 4.39 x 10-322 to 賊 1.7976931348623157 x 10308
char 16-bit characters encoded using Unicode The relational operators
The logical operators:
boolean the values true and false && add || or ! not
5. Constants and Variables
The simplest terms that appear in expressions are constants
and variables. The value of a constant does not change
during the course of a program. A variable is a placeholder
for a value that can be updated as the program runs.
A variable in Java is most easily envisioned as a box capable
The format of a constant depends on its type:
of storing a value. consist of a string of digits, optionally preceded by a
Integral constants
total
minus sign, as in 0, 42, -1, or 1000000.
Floating-point constants include a decimal point, as in 3.14159265 or
42 (contains an int)
10.0. Floating-point constants can also be expressed in scientific
Each variableadding thefollowing attributes: after the digits of the
notation by has the letter E and an exponent
10-8
number, so that 5.646E-8 represents the number 5.646 from .another.
A name, which enables you to differentiate one variable
A type, which specifies what type ofare true and false. contain.
The two constants of type boolean value the variable can
A value, which represents the current contents of the in Chapter 8.
Character and string constants are discussed in detail variable.
For the moment, all you need to know is that a string constant consists
The name and type of a variable are double quotation marks, such
of a sequence of characters enclosed in fixed. The value changes
whenever youworld". a new value to the variable.
as "hello, assign
6. Java Identifiers
Names for variables (and other things) are called identifiers.
Identifiers in Java conform to the following rules:
A variable name must begin with a letter or the underscore character.
The remaining characters must be letters, digits, or underscores.
The name must not be one of Javas reserved words:
abstract else interface super
boolean extends long switch
break false native synchronized
byte final new this
case finally null throw
catch float package throws
char for private transient
class goto protected true
const if public try
continue implements return void
default import short volatile
do instanceof static while
double int strictfp
Identifiers should make their purpose obvious to the reader.
Identifiers should adhere to standard conventions. Variable names, for
example, should begin with a lowercase letter.
7. Variable Declarations
In Java, you must declare a variable before you can use it.
The declaration establishes the name and type of the variable
and, in most cases, specifies the initial value as well.
The most common form of a variable declaration is
type name = value;
where type is the name of a Java primitive type or class, name
is an identifier that indicates the name of the variable, and
value is an expression specifying the initial value.
Most declarations appear as statements in the body of a
method definition. Variables declared in this way are called
local variables and are accessible only inside that method.
Variables may also be declared as part of a class. These are
called instance variables and are covered in Chapter 6.
8. Operators and Operands
As in most languages, Java programs specify computation in
the form of arithmetic expressions that closely resemble
expressions in mathematics.
The most common operators in Java are the ones that specify
arithmetic computation:
+ Addition * Multiplication
Subtraction / Division
% Remainder
Operators in Java usually appear between two subexpressions,
which are called its operands. Operators that take two
operands are called binary operators.
The - operator can also appear as a unary operator, as in the
expression -x, which denotes the negative of x.
9. Division and Type Casts
Whenever you apply a binary operator to numeric values in
Java, the result will be of type int if both operands are of
type int, but will be a double if either operand is a double.
This rule has important consequences in the case of division.
For example, the expression
14 / 5
seems as if it should have the value 2.8, but because both
operands are of type int, Java computes an integer result by
throwing away the fractional part. The result is therefore 2.
If you want to obtain the mathematically correct result, you
need to convert at least one operand to a double, as in
(double) 14 / 5
The conversion is accomplished by means of a type cast ,
which consists of a type name in parentheses.
10. The Pitfalls of Integer Division
Consider the following Java statements, which are intended to
convert 100 Celsius temperature to its Fahrenheit equivalent:
double c = 100;
double f = 9 / 5 * c + 32;
The computation consists of evaluating the following expression:
The problem arises from the9 / 5 * c 132 32
+
fact that both 9 and 5 are of
type int, which means that
the result is also an int. 100
1
9 / 5 * c + 32
11. The Pitfalls of Integer Division
You can fix this problem by converting the fraction to a double,
either by inserting decimal points or by using a type cast:
double c = 100;
double f = (double) 9 / 5 * c + 32;
The computation now looks like this:
212.0
180.0
1.8
9.0
(double) 9 / 5 * c + 32
12. The Remainder Operator
The only arithmetic operator that has no direct mathematical
counterpart is %, which applies only to integer operands and
computes the remainder when the first divided by the second:
14 % 5 returns 4
14 % 7 returns 0
7 % 14 returns 7
The result of the % operator make intuitive sense only if both
operands are positive. The examples in this book do not
depend on knowing how % works with negative numbers.
The remainder operator turns out to be useful in a surprising
number of programming applications and is well worth a bit
of study.
13. Precedence
If an expression contains more than one operator, Java uses
precedence rules to determine the order of evaluation. The
arithmetic operators have the following relative precedence:
highest
unary - (type cast)
* / %
+ -
lowest
Thus, Java evaluates unary - operators and type casts first,
then the operators *, /, and %, and then the operators + and -.
Precedence applies only when two operands compete for the
same operator. If the operators are independent, Java
evaluates expressions from left to right.
Parentheses may be used to change the order of operations.
14. Exercise: Precedence Evaluation
What is the value of the expression at the bottom of the screen?
42
32
0 32
0 4
3 30 8
( 1 + 2 ) % 3 * 4 + 5 * 6 / 7 * ( 8 % 9 ) + 10
15. Assignment Statements
You can change the value of a variable in your program by
using an assignment statement, which has the general form:
variable = expression;
The effect of an assignment statement is to compute the value
of the expression on the right side of the equal sign and assign
that value to the variable that appears on the left. Thus, the
assignment statement
total = total + value;
adds together the current values of the variables total and
value and then stores that sum back in the variable total.
When you assign a new value to a variable, the old value of
that variable is lost.
16. Shorthand Assignments
Statements such as
total = total + value;
are so common that Java allows the following shorthand form:
total += value;
The general form of a shorthand assignment is
variable op= expression;
where op is any of Javas binary operators. The effect of this
statement is the same as
variable = variable op (expression);
For example, the following statement multiplies salary by 2.
salary *= 2;
17. Increment and Decrement Operators
Another important shorthand form that appears frequently in
Java programs is the increment operator , which is most
commonly written immediately after a variable, like this:
x++;
The effect of this statement is to add one to the value of x,
which means that this statement is equivalent to
x += 1;
or in an even longer form
x = x + 1;
The -- operator (which is called the decrement operator) is
similar but subtracts one instead of adding one.
The ++ and -- operators are more complicated than shown
here, but it makes sense to defer the details until Chapter 11.
18. Boolean Expressions
In many ways, the most important primitive
type in Java is boolean, even though it is by
far the simplest. The only values in the
boolean domain are true and false, but
these are exactly the values you need if you
want your program to make decisions.
The name boolean comes from the English
mathematician George Boole who in 1854
wrote a book entitled An Investigation into
the Laws of Thought, on Which are Founded
the Mathematical Theories of Logic and
Probabilities. That book introduced a system
of logic that has come to be known as
Boolean algebra, which is the foundation for
the boolean data type.
George Boole (1791-1871)
19. Boolean Operators
The operators used with the boolean data type fall into two
categories: relational operators and logical operators.
There are six relational operators that compare values of other
types and produce a boolean result:
= = Equals != Not equals
< Less than <= Less than or equal to
> Greater than >= Greater than or equal to
For example, the expression n <= 10 has the value true if x
is less than or equal to 10 and the value false otherwise.
There are also three logical operators:
&& Logical AND p && q means both p and q
|| Logical OR p || q means either p or q (or both)
! Logical NOT !p means the opposite of p
20. Notes on the Boolean Operators
Remember that Java uses = to denote assignment. To test
whether two values are equal, you must use the = = operator.
It is not legal in Java to use more than one relational operator
in a single comparison as is often done in mathematics. To
express the idea embodied in the mathematical expression
0 x 9
you need to make both comparisons explicit, as in
0 <= x && x <= 9
The || operator means either or both, which is not always
clear in the English interpretation of or.
Be careful when you combine the ! operator with && and ||
because the interpretation often differs from informal English.
21. Short-Circuit Evaluation
Java evaluates the && and || operators using a strategy called
short-circuit mode in which it evaluates the right operand
only if it needs to do so.
For example, if n is 0, the right hand operand of && in
n != 0 && x % n == 0
is not evaluated at all because n != 0 is false. Because the
expression
false && anything
is always false, the rest of the expression no longer matters.
One of the advantages of short-circuit evaluation is that you
can use && and || to prevent execution errors. If n were 0 in
the earlier example, evaluating x % n would cause a division
by zero error.
22. Designing for Change
While it is clearly necessary for you to write programs that
the compiler can understand, good programmers are equally
concerned with writing code that people can understand.
The importance of human readability arises from the fact that
programs must be maintained over their life cycle. Typically,
as much as 90 percent of the programming effort comes after
the initial release of a system.
There are several useful techniques that you can adopt to
increase readability:
Use names that clearly express the purpose of variables and methods
Use proper indentation to make the structure of your programs clear
Use named constants to enhance both readability and maintainability