Skip to content

Commit e434bb6

Browse files
authored
Update 00-IntroductionToJava.md
1 parent cad202f commit e434bb6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

00-IntroductionToJava.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11

22
# Lesson 00 - An Introduction to Java
3-
Before we get started using the Temperature Control Lab, it's important that we get a good feel for the tools we will use to program. This course will use the Java programming language. You can write a Java code in any text editor, however, out of convenience, most programmers prefer using an IDE (Integrated Development Environment). An IDE gives you a place to both write your code **and** run your code in the same program. In addition, IDE's can include other features that are useful to programmers like debuggers to help figure out what is wrong when their program doesn't run like they expected. There are many IDE options for you to consider. Three popular IDEs are [Eclipse](https://www.eclipse.org/downloads/packages/release/kepler/sr1/eclipse-ide-java-developers), [IntelliJ]([https://www.jetbrains.com/idea/](https://www.jetbrains.com/idea/)), and [Visual Studio]([https://visualstudio.microsoft.com/](https://visualstudio.microsoft.com/)). Each of them has free download options that anyone can use. For this course, we will be using Eclipse, although most full-feature IDEs will let you do everything we will do here.
3+
Before we get started using the Temperature Control Lab, it's important that we get a good feel for the tools we will use to program. This course will use the Java programming language.
4+
5+
[![Java Course](https://apmonitor.com/che263/uploads/Begin_Java/BeginJava00.png)](https://www.youtube.com/watch?v=RP6pgUk0Fkk&list=PLLBUgWXdTBDgp8_akDMUUV0_QRlIYwjGJ "Begin Java with the TCLab")
6+
7+
You can write a Java code in any text editor, however, out of convenience, most programmers prefer using an IDE (Integrated Development Environment). An IDE gives you a place to both write your code **and** run your code in the same program. In addition, IDE's can include other features that are useful to programmers like debuggers to help figure out what is wrong when their program doesn't run like they expected. There are many IDE options for you to consider. Three popular IDEs are [Eclipse](https://www.eclipse.org/downloads/packages/release/kepler/sr1/eclipse-ide-java-developers), [IntelliJ]([https://www.jetbrains.com/idea/](https://www.jetbrains.com/idea/)), and [Visual Studio]([https://visualstudio.microsoft.com/](https://visualstudio.microsoft.com/)). Each of them has free download options that anyone can use. For this course, we will be using Eclipse, although most full-feature IDEs will let you do everything we will do here.
48

59
In addition to an IDE in which to run your code, your computer will need to have the [JDK](https://www.oracle.com/java/technologies/javase/javase-jdk8-downloads.html) (Java Development Kit) installed. This is what allows the IDE to compile Java code.
610

0 commit comments

Comments
 (0)