Resources
Java
We will the use the Java 6 Standard Edition (Java SE 6) platform, which consists of the Java Development Kit (JDK) and the Java Runtime Environment (JRE). Java 5 will also be sufficient.
If you are using a version of Java prior to 5, such as J2SE 1.4, you must upgrade. We will be using many new features that were introduced in Java 5, such as generics, autoboxing, and typesafe enums. These newer features are described in the following sources:
- http://java.sun.com/developer/technicalArticles/releases/j2se15
- http://java.sun.com/j2se/1.5.0/docs/relnotes/features.html
To find out which version of the Java Runtime Environment (JRE) you are
running, open a command window (in Windows, Start > Run... and type cmd,
and in Mac OS X, Applications > Utilities > Terminal)
and type java -version at the command prompt:
C:\>java -version java version "1.6.0_07" Java(TM) SE Runtime Environment (build 1.6.0_07-b06) Java HotSpot(TM) Client VM (build 10.0-b23, mixed mode, sharing)
This says I have version 6 installed (6 and 1.6 are synonymous).
If you are on a PC running Windows and have never installed a version
of the Java Development Kit (JDK) on your machine, you probably don't have it.
If you are on a Mac, you probably do. To find out, type javac -version:
C:\>javac -version javac 1.6.0_07
If you get an error message or the version is earlier than 1.5, you must (re)install the JDK.
Installing the JDK
The JDK is already installed in CIT and ACCEL labs. However, installing it own your own machine will greatly facilitate your work. Please note that you should double check your work in a public lab, as privately owned machines occasionally exhibit different behaviors.
Windows and Unix
To download the JDK, visit Sun's Java web site and download and install JDK 6 Update 7.
Mac
As of Fall 2005, Sun does not support Java for Macs. However, there is support available from Apple. You must be running Mac OS X version 10.4 (Tiger) or later, which comes with the JDK version 5 already installed.
If you have a 64-bit Intel-based Mac running Mac OS X 10.5 (Leopard), there is a version of Java SE 6 available from Apple. If you wish to upgrade, visit Apple's Java web site and download and install Java for Mac OS X 10.5, Update 1. After installing, run Applications > Utilities > Java > Java Preferences. Drag the newly installed version of Java to the top of the list under Java Application Runtime Settings. Click Save.
Compiling and Running from the Command Line
Compiling
Say your main class is MyProgram and it is
contained in the source file MyProgram.java.
If it is not in a package, navigate
to the folder containing MyProgram.java
and type javac MyProgram.java.
If it is in a package (say myPackage), the
source should be in a folder called myPackage. Navigate
to the folder containing myPackage
and type javac myPackage/MyProgram.java.
Running
From the same folder you compiled from, type
java MyProgram <program arguments> if it is not
in a package, and java myPackage.MyProgram <program arguments> if it is.
Specifying a Classpath
Sometimes you may need to inform Java where to find auxiliary
classes. You can do this with the -cp option
to the java command.
Supply a sequence of folders telling Java where to look
for classes, separated by : (Mac) or
; (Windows).
Brushing Up
For students with limited Java experience, we recommend the online notes from CS 1130 (formerly 101J), Transition to Object-oriented Programming as a refresher. This is a self-paced course consisting of several modules that you can go through at your leisure.
More Ways To Catch Up
- Review the introductory chapters in the textbook and the Java reference books listed on the course info page.
- See Sun's official Java Tutorial.
- Refer to the CS 1110 (formerly 100J) and CS 1130 (formerly 101J) websites, which contain numerous examples.
- For students with C++ experience, see http://www.perryland.com/Java2.shtml to compare C++ with Java.
Local Software
There are some basic Java utilities specifically for CS 2110 and 2111 that you
may find useful. These are contained in a package edu.cornell.cs.cs2110 contained in a
.jar file which you can download from here.
Follow the installation instructions on that page.
Javadoc documentation is also available.
IDEs
IDE stands for integrated development environment. The use of an IDE is the best way to develop Java programs. IDEs provide many valuable aids such as syntax checking, debugging, and refactoring that can save you a lot of effort.
There are many good IDEs. We recommend Eclipse, but you may use any one that you like, or none at all. Eclipse is installed in all the labs, along with some others.
Early recitation sections will get you started with Eclipse if you are not familiar with an IDE.
Here are some links:
For consistency, the course staff use Eclipse with a common Java style. You can download the Eclipse style template here.
Programming
There are many valuable resources that can help you take your programming skills to the next level. Here are a few links:
General
Software Development Methodologies
Debugging
Just for Fun
- How not to program
- Teach Yourself Programming in Ten Years
- Quines (Self-Reproducing Programs)
- Powers Of Ten
- Programming Quotes
- How To Become A Hacker
- How To Write Unmaintainable Code
- History of Operator Precedence
- Software Bugs & Glitches
- Doom for System Administration
- The International Obfuscated C Code Contest
- The Easter Egg Archive
- Control Flow: The Bad, The Good, The Exceptional
- OOP Criticism
- Esoteric Programming Languages
Computer Labs
CIT Labs
Cornell Information Technologies (CIT) runs several computer labs across campus for all members of the Cornell community. The JDK and Eclipse are installed on these machines. Check here for locations and times of operation.
ACCEL Lab
You can also find the course software in the Academic Computing Center (ACCEL), located in the Engineering Library in Carpenter Hall. Any CS student may register for an account.
Support Services
Academic Excellence Workshops
The Academic Excellence Workshops (AEW) offer an opportunity for students to gain additional experience with course concepts in a cooperative learning environment. Research has shown that cooperative and collaborative methods promote higher grades, greater persistence, and deeper comprehension. The material presented in the workshop is at or above the level of the regular course. We do not require joining the AEW program, but do encourage students to join if they are seeking an exciting and fun way to learn. The AEW carries one S/U credit based on participation and attendance. The time commitment is two hours per week in the lab. No homework will be given. This is a wonderful opportunity for students to seek extra help on course topics in a small group setting.
Your fellow undergraduate students, who are familiar with the course material, teach the sessions with material that they prepare. The course staff provides guidance and support but do not actually teach the AEW course content or any session. A representative from the AEW program will be speaking about the program and registration procedures in lecture.
One of your TAs will be designated as the AEW liaison for CS 2110. Watch the announcements to find out who.
See the AEW webpage for further information.
Other Support Services
| PROGRAM | DESCRIPTION |
|---|---|
| Academic Support Services For Engineering Students | Start here - this site has links to a variety of services. |
| Free Computer Training | CIT offers free computer training throughout the semester. Email tts_consult@cornell.edu for an appointment. |
| Student Web Services | This website collects services that are more general. |
| Engineering Advising | Academic advising for engineering students. |
| Arts College Student Services | A listing of general support services for a variety of concerns students may have. |
| Tau Beta Pi | Tau Beta Pi Engineering Honor Society Tutoring Program. The members of Tau Beta Pi are selected for their academic aptitude and social commitment. They hold one-on-one tutoring sessions with students in courses that typically have a large enrollment of engineers. |
| Learning Styles | Not everyone learns the same way. If you are curious about how you learn, check out this collection. |
| Gannett | The Cornell University Health Service Center. For all health related concerns. |
| CAPS | If you are experiencing emotional distress, we urge you to contact CAPS, the Counseling and Psychological Services. |
| Dear Uncle Ezra | When all else fails, ask Uncle Ezra! |
