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.

View RSS Feed

JD1's Personal Development Blog

Over the next year, I plan on learning as much about the Java programming language as possible. I'll be blogging posts I create at http://javadevelopmentforums.com/ here to keep you all updated on my progress.

  1. The While Loop

    The While Loop is an excellent way of outputting data until reaching a specific point. It's used by running instructions until a condition is no longer true. Basically, it's going to keep running the same set of instructions until the specified condition is modified so as to be false, to reiterate. Sometimes, While Loops can create infinite loops. Usually, While Loops have an instruction at the end of the instruction set which modifies (usually increments) a counter variable being used in the condition ...
    Categories
    Uncategorized
  2. The Switch Statement

    It's to my understanding that the Switch Statement is used as a means of saving time. If you want to test multiple conditions, but are looking for a more efficient way of doing things than using the If or Else If Statements, the Switch Statement is the way to go. I have trouble remembering what the switch statement means because I fail to make its connection to the 'case' keyword. The 'case' is the most important part of the switch statement. I know I'll be able to remember to use the switch statement ...
    Categories
    Uncategorized
  3. The If Statement

    Quote Originally Posted by OA-OD-JD1 View Post
    From prior programming experience, I'm well aware of what an If Statement is. I'm just going to quickly go over its syntax so I don't forget!

    Single Line If Statement Without Else Clause

    if(condition)
       instructions if condition proves true (confined to one line of instructions)...

    Single Line If Statement With Else Clause

    if(condition)
       instructions if condition proves true (confined to one line
    ...
    Categories
    Uncategorized
  4. JD1's Personal Development Blog

    Hello everyone,

    As posted in my introduction, I'm going to do my best to learn as much as possible about the Java programming language over the next year (and afterwards, of course).

    To help me cement some of the new found knowledge I'm receiving via tutorials and guides, I've decided to keep this blog as my personal location for posting what I'm learning about, any questions I might have, and code snippets I'm working with.

    I'm all for assistance - that's ...
    Categories
    Uncategorized
Page 6 of 6 FirstFirst ... 456