Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 6 of 6

Thread: Help TEACHING Java

  1. #1
    Junior Member
    Join Date
    Aug 2011
    Location
    hillsboro mo
    Posts
    3
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Help TEACHING Java

    I am a high school teacher out in rural Mo and this year they are handing out an android tablet to each student (Koby Kyros MID7024). Since I used to be a c++ pro years ago, it was very easy enough to enough create rudimentary windows and android apps using the online java/android tutorials.
    So I asked the principal if I could start an after school computer club with zero software costs but could he buy some books for the library.
    So this thing is run zero cost. We'll use eclipse, the ADK and any other free tools.
    The principal has said he will buy two or three book. I need some recommendations for "how to program - and java is our example language". Thanks in advance for your suggestions.


  2. #2
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: Help TEACHING Java

    Hi from Table Rock Lake.
    It's been a long time since I was a student, so I can't recommend a text for Java.

    If there are any general Java issues that I could help you with let me know. I took a look at Android but never got past the third test program using the emulator.
    Norm
    Last edited by Norm; August 2nd, 2011 at 06:59 AM.

  3. #3
    mmm.. coffee JavaPF's Avatar
    Join Date
    May 2008
    Location
    United Kingdom
    Posts
    3,336
    My Mood
    Mellow
    Thanks
    258
    Thanked 294 Times in 227 Posts
    Blog Entries
    4

    Default Re: Help TEACHING Java

    Hello ducky123, welcome to the Java Programming Forums.

    I suggest searching Amazon and reading the users reviews.
    Here is a good place to start:

    Android Application Development For Dummies

    Learn Java for Android Development

    Don't forget to send your students to our forum for any help
    Please use [highlight=Java] code [/highlight] tags when posting your code.
    Forum Tip: Add to peoples reputation by clicking the button on their useful posts.

  4. The Following User Says Thank You to JavaPF For This Useful Post:

    ducky123 (August 3rd, 2011)

  5. #4
    Crazy Cat Lady KevinWorkman's Avatar
    Join Date
    Oct 2010
    Location
    Washington, DC
    Posts
    5,424
    My Mood
    Hungover
    Thanks
    144
    Thanked 636 Times in 540 Posts

    Default Re: Help TEACHING Java

    For what it's worth, my high school programming teacher created his own packets for each week, describing some syntax and following it up with a few assignments to finish that week. He then taught more in-depth lessons to people who wanted them, or you could just work straight from the packet yourself. I owe almost all of my programming knowledge to that approach. I don't think I would have learned the same from a book.
    Useful links: How to Ask Questions the Smart Way | Use Code Tags | Java Tutorials
    Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!

  6. The Following User Says Thank You to KevinWorkman For This Useful Post:

    ducky123 (August 3rd, 2011)

  7. #5
    Junior Member
    Join Date
    Aug 2011
    Location
    hillsboro mo
    Posts
    3
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Re: Help TEACHING Java

    As you suggested, I looked at reviews for your top picks and then I found :
    Programming Book Reviews - TechBookReport : Java, .Net, Python, PHP, C, XML
    TREMENDOUS RESOURCE. I was a big fan of (and own) Eckel's "Thinking in c++" so I'm curious about the thinking differences between c++ and java. So far, I'm irritated by the training wheels so firmly attached to java.

  8. #6
    Junior Member
    Join Date
    Aug 2011
    Location
    hillsboro mo
    Posts
    3
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Re: Help TEACHING Java

    Thanks for sharing your HS experience.
    My experience was procedural language after procedural language, after ... and then came c++. So I learned OOP after knowing "how to program".
    But to get started with Java, we have to learn the built in types, some simple procedural code AND learn enough about classes to understand main's class, the String[] in main(), and for IO.