CPSC 233 Lecture Notes - Lecture 1: Object-Oriented Analysis And Design, Karl Agathon, Enterprise Javabeans

45 views31 pages

Document Summary

Contains these command line tools: javac: the java compiler java: the interpreter appletviewer: bare bones browser javadoc: a html documentation generator (scans the source code files for particular comments and produces html documentation) jdb: debugger javaprof: profiling tool (statistical analysis to see which parts of your program is using the most time) javap: disassembler (take bytecode and disassemble to produce source code. Primitive short byte int long float double char boolean int. Eg: x * y / z x + y / z (x + y) / z same as same as same as (x * y) / z x + (y / z) forces precedence. // creating local variable if else if ladders are common: if (condition1) statement1 else if (condition2) statement2 else if (condition3) statement3 statementn else if (a == b) else if (a < b) General form: switch (expression) { case constant1: statements break case constant2: statements break default: statements break .

Get access

Grade+
$40 USD/m
Billed monthly
Grade+
Homework Help
Study Guides
Textbook Solutions
Class Notes
Textbook Notes
Booster Class
10 Verified Answers
Class+
$30 USD/m
Billed monthly
Class+
Homework Help
Study Guides
Textbook Solutions
Class Notes
Textbook Notes
Booster Class
7 Verified Answers

Related Documents