290 likes | 432 Views
Guidelines in Writing a Java Program. Adding Comments. Three permissible styles of comments line comments e.g. //comments on a line by themselves block comments e.g. /*comments on one line or can be extended across as many lines as needed */ Javadoc comments
E N D
Adding Comments • Three permissible styles of comments • line comments • e.g. //comments on a line by themselves • block comments • e.g. /*comments on one line or can be extended across as many lines as needed */ • Javadoc comments • e.g./**javadoc comments generate documentation with a program named javadoc*/
The java source code has to be saved with an extension .java • The filename and the classname must be the same • Case sensitive
Java Programming conventions • Requirements when defining a classname: • A classname must begin with a letter of the alphabet, an underscore or a dollar sign. • A classname can contain only letter, digits, underscore or dollar signs. • A classname cannot be a Java programming language reserved keyword
Java Programming conventions • Classname should be nouns in mixed case. • Variable names declared usually begin with a lowercase first letter and should be in mixed case • Constant variables declared usually are all uppercase with the words separated by underscore. • Method name(procedures) declared should be verbs in mixed case with the first letter in lower case.
Java Programming conventions • Whitespace used to organize your program code to make reading easier. • The code between a pair of curly brackets ‘{‘ and ‘}’ within any class or method is known as a block. • All statements in Java programming ends with a semicolon( ; ). • A statement is a single line of code.
Identifiers • names that are given to a variable, class or a method • case sensitive Requirements in declaring an identifier: • can used letters, digits, dollar signs and underscores • must begin with a letter, an underscore or a dollar sign • no maximum length of characters • must not use of reserved words
Keywords • The basic building blocks of the language
Constants and Variables Two types of identifiers in JAVA Programming: • Constants- data or values stored that do not change during the execution of the program • Variables- data or values stored that can be changed during the execution of the program
Syntax to declare a constant: static final type identifier=value; The type in the declaration refers to the data type(which will be seen later in this chapter). The identifier refers to the name of the constant being defined.
Variable declaration will include the following: • A data type that identifies the type of data that the variable will store • An identifier that is the variable’s name • An optional assigned value, if we want a variable to contain an initial value • A semicolon to end the declaration
Syntax to declare a variable: typeidentifier; The type refers to the data type, and identifier is the name of the variable being defined. typeidentifier1, identifier2; To define more than one variable with the same data type, the names will be separated by a comma.
Syntax to declare a variable: • We can assign a value to a variable at the time of declaration or at any point later on after the variable is being declared. syntax: type identifier=value; or type identifier; identifier=value;
Data Types • Primitive • boolean • byte • char • double • float • int • long • short • Reference • array • class
Categories(continuation) • Logical • Boolean – can hold only true or false • e.g. boolean answer=true; • Integer
Categories(continuation) • Floating Point • Character • char • e.g. char num = ‘8’;
Categories(continuation) • Array • A list of variables which all have the same data types and same name Syntax: type array_name[]; or type [] array_name;
Categories(continuation) • Class • String • Variable name refers to the location in memory rather than to a particular value. • e.g. String myWord=“Java is my favorite subject”;
Separators • Used to define the shape and function of Java code
Operators • Symbols used with data or variables to create mathematical or logical expressions • Types: • Arithmetic operator • Relational or comparison operator • Logical operator • Assignment operator • Increment/decrement operator
Types of Operators • Arithmetic operator
Types of Operators • Relational or comparison operator • Allows us to compare two items
Types of Operators • Logical operator • Used to combine compound conditions
Types of Operators • Assignment operator • Represented by the equals sign (=) • Initialization- assignment made when we declare a variable • Assignment-assignment made later
Types of Operators • Pre-increment e.g. ++identifier; • Post-increment e.g. identifier++; • Pre-decrement e.g. --identifier; • Post-decrement e.g. identifier--; • Increment or decrement operator
Escape Sequences • Used to store any characters that includes non-printing characters