vote up 8 vote down star
1

I'm going to teach a Java course, and I want to show some interesting and impressive examples of simple Java programs at the first lecture to awaken student interest.

Except for the default examples which come with the JDK, what can you advise?

What possibilities of Java were you impressed by?

One more thing - students admittedly know C++ or C or (maybe even) Pascal.

flag

14 Answers

vote up 12 vote down check

Are you after impressive-looking code, or impressive-looking programs?

When I've started classes with examples before, students always seem particularly fascinated with anything that uses the network. I've created some fairly trivial frameworks for network games (Hangman, BINGO, that sort of thing) that can let students start writing their own network applications very quickly — usually within a single two-hour lab period, or even a 90-minute lecture.

I've used this to generally show how logical and fun programming can be, so as not to scare off skeptical first-year programming students, but I can see the same thing working for first-time Java programmers just as well.

link|flag
I'm looking for both code and programs. Thank you for the idea with networking programming, I'll think about how to apply effectively it in my case. – Roman Aug 23 at 15:38
1  
This is a very good idea. Java's library is very, very good at accessing network resources, which C and Pascal are much worse at. A quick example of Java's pros vs. C's cons would be a 10 line program that loaded an image from the Internet and displayed it. – CaptainAwesomePants Aug 23 at 22:44
2  
Check out the last.fm API, maybe you can make a small simple client that reads the most popular bands or something like that, parse the XML and present it in a JTable on Swing or something like that... a simple twitter client, or something like that could get the students' attention, since it doesn't feel like something abstract, it's a program connecting to something they're familiar with. – Chochos Aug 24 at 23:22
vote up 0 vote down

This stockmarket visualization applet is pretty impressive. However, you might try explaining that a huge amount of dynamic content that they use on the web will be invisibly backed by Java servlet technology.

link|flag
vote up 1 vote down

I think that the most impressive things in Java is the ease and speed with which you can develop things, while at the same time not sliding into writing unstructured, disorganized code.

Among particular features, you can show them generics, reflection (warn them about its perils though), or the portability of Java code.

link|flag
vote up 1 vote down

IMHO, Make them understand OOP Concepts (encapsulation,Inheritance and Polymorphism).This is what Java gives me when compared to Pascal,C,C++ (ofcourse apart from the Hugh library).They are kind of weaved well in the language and the VM.

Then drive them through the process of building an application which when done in OOP-way would reap them multiple benefits.

link|flag
vote up 2 vote down

if you want to get some quick Ahh's and Oooh's write a trivial app - maybe swing - and show them how they can seamlessly start the same .jar file via java web start on 3-4 different operating systems - windows, linux, osx.

link|flag
I don't think showing them the same program 4 times is the answer here. They will loose focus quite fast. – Ula Krukar Aug 25 at 17:48
vote up 3 vote down

While getting students excited is a good goal, be sure to do it in a way that isn't over-hyped. You say that many of your students know C or C++. Don't alienate them.

My first assignment in a java class was to read a short book written by one of the guys who created java. It was full of quasi-religious glorification of java, combined with rips on C++. It was a real turn off. Much of the glorification has turned out to be unfounded, and many of the criticisms of C++ were either unwarranted or have been improved upon as the language has evolved. Your students certainly don't believe C++ is a perfect language, but the fervored, competitive rhetoric between languages reaches silly proportions. In fact I'm expecting some of that rhetoric in comments to this post.

All I'm saying is to pick realistic examples, not rare wowsers that aren't reprentative of what they're likely to see in real world projects. Java has strengths compared to other languages, but also has weaknesses. Your students will see through an overly rosy view of the language. An overdone attempt to interest them may actually have the opposite affect.

link|flag
vote up 2 vote down

Perhaps bring up how easy it is to unit-test your code with JUnit in Java. Boy do I wish my teachers would have mentioned that. I did'nt even know what unit-testing was. I'm a unit-test freak now, but it would have saved alot of lab-time for me knowing about unit-testing at school. Besides, any company with half a mind would want their programmers to test their code.

link|flag
Don't you think that Unit-testing is kinda bored? And they don't even know anything about unit-testing yet. (but for all that I agree that u-tests are necessary and useful:) – Roman Aug 23 at 15:54
Continually monkey testing your program and it still being full of bugs is really boring. Particularly if you have an algorithm problem (with a subtle bug slipped in), I think it could be the basis of a useful, mind-changing demo. – Tom Hawtin - tackline Aug 23 at 16:22
Writing unit-test AFTER the code is finished is no fun, but writing it before in a true TDD manner is. Then you really have to think about how your code is going to be used, and what it is supposed to do before you implement it. But perhaps bringing in TDD is a little too much. How about showing them a piece of code with a not so obvious bug. Write a test to recreate that bug, and then fix the code so the test runs green? I often find this very rewarding when dealing with bugs. – crunchdog Aug 23 at 17:44
vote up 0 vote down

Maybe you already need a bit of programming experience to appreciate it, but I'm pretty impressed with Jython.

CPython has a decent size codebase, and making a nearly equivalent port to yet another cross-platform system such as Java is impressive in my book. But, that probably isn't something early CS students would appreciate.

link|flag
I'm only going to learn Jython by myself :) – Roman Aug 23 at 15:57
vote up 2 vote down

Try showing them open source examples of programs written in Java such as:

JNode, an OS in java: http://www.jnode.org/

Games or game libraries made with Java: http://bytonic.de/html/jake2.html http://fivedots.coe.psu.ac.th/~ad/jg/ (See the example files)

A multiplayer game can also be used to introduce the networking support in Java, http://arianne.sourceforge.net/

Just do a quick search on sourceforge.net for more programs.

link|flag
vote up 3 vote down

I think I'd search through C++ examples to find something that doesn't work well in that language, but works without problem in Java. Perhaps something that needs careful memory management. Perhaps something that requires a comprehensive library (although too often I see a language advocated on the basis of a specific, not actually that useful, library function).

Code that has, say, a buffer overflow which Java catches but (usually) C and C++ do not could also be enlightening.

link|flag
vote up 0 vote down

You can show them real-life websites created with GWT or Wicket, sites they're probably already familiar with.

"See? This is what Java can do! [with the right framework, under the right configuration, with the right wind speed and humidity condition, and provided nobody yawns next to it] " (it's important to mumble the last part, or some of your students will actually hear it and learn the awful truth...)

This page can give you some examples for GWT.

link|flag
vote up 0 vote down

Some of the possibilities of Java that impressed me are in one of the demos in the JDK, the Graph Layout applet (it still works in browsers, even today). The code for it is surprisingly compact. The applet is also interactive, one can drag the boxes - try it! (using the link - the below is a screenshot.)

This applet was featured on page 62 in the book Hooked on Java.

Here is a static view of it:

alt text

link|flag
vote up 3 vote down

Another possibility is to start by writing a tiny HTTP server in Java, along the lines of Tiny Java Web Server or Java Mini Web Server. There's nearly instant gratification in serving up static content from a directory, and that teaches Java file I/O and networking along with some HTTP basics. Then you can layer on more and more features as needed to expose other parts of the language, such as using Java collections to manage request and response headers. Such a project involves only a few hundred lines of code.

Update: I really like @weiji's example, especially for beginning programmers. My suggestion assumes experienced programmers who need something more apropos to their current jobs (assuming they're not working for an EA or Digital Chocolate!).

link|flag
Upvoted for pointing me to TJWS and JMWS. Both are good demonstrations of Java functionality. – Imagist Sep 6 at 18:39
vote up 9 vote down

A lot of the answers here are waaay off base. The people giving those answers have too much experience with computers and programming to understand what is needed as a presentation to beginner programming students. The qualifier of "students admittedly know C++ or C or (maybe even) Pascal" sounds like "students may have completed an intro to Programming in C++|C|Pascal course last semester".

After reading the question carefully, I thought that good examples for the first day of lecture would have the following criteria:

  • Source is very small - small enough that you can show the major portions of any relevant algorithm(s) to the students.
  • Executes quickly and visibly - they don't want to wait around, and they should see clearly and easily (people are generally visual learners).
  • Can have a few parameters modified, then you compile and run it again - students can see how changing the source affected the operation of the program.

    That last point is the most important, I think. When I was a student, I had a multimedia class where I used the Java 2D API to write a simple image display program that the user could then use to apply a few filters. Press a button and BAM - I just changed the picture. My ego was screaming "take that, Photoshop!" It's silly and stupid, but it engaged me and made it fun, and for a learning experience I think that's what you need. You are NOT going to be able to adequately cover Object-Oriented Programming on the first day (and maybe not even within the first month), and I highly doubt you will mention unit testing at all during an intro to java class.

    Other than my image display example, I think games would be a big draw. If I remember my student days correctly, I remember that students like to play games, not configure web servers. I don't mean to say you drag out jake2 (but then again, that might be awesome), but you show a simple game like pong (just to get some laughs) and then move up to more interactive stuff. Did you know Runescape is run as a Java applet? You might want to look into that sort of thing more.

    With apologies to the other responders.

  • link|flag
    Although I'm one of those responders you're probably referring to, I totally agree with your recommendations. Good suggestions. – Darryl Aug 24 at 18:20
    I'm likely another such responder, but I also agree with this. The key factor is the experience level and interests of the students. If they're relatively new to programming then small visual games are a great way to start. I helped organize a grad level J2ME-oriented games course at the USC GamePipe Lab a couple years ago and the results were extraordinary! On the other hand, if you're teaching experienced programmers you'll want an example that more closely matches their interests (especially if their companies pay for the course). – Jim Ferrans Aug 26 at 14:41

    Your Answer

    Get an OpenID
    or

    Not the answer you're looking for? Browse other questions tagged or ask your own question.