yego.me
💡 Stop wasting time. Read Youtube instead of watch. Download Chrome Extension

Java Lesson 1 | Hello World


3m read
·Nov 3, 2024

This bath has 101. I'm a special guest. My name is Jake, and this will be the first of my Java tutorial.

So, the first thing we need to do, if you don't already have Eclipse, is download that. You get that from eclipse.org and then downloads. The one I'm going to be using is this one at the bottom: Eclipse Classic. Of course, I'm not gonna be downloading that because I already have it, but if you don't, download that.

So first, just going to open up Eclipse. I'm gonna make it a HelloWorld application in this one, so just letting you know. Um, so the first thing I actually need to do is File, New. We're gonna be creating a new Java project.

So this is our project, and I'll name the projects "the projects." Then, window, show view, Project Explorer, so we can see all the projects. Now, we can't just start coding in there because we don't have a class yet; it's actually where to write the code in.

So, you click File, New, Class. I'll name that class "Capital" and "MathHeads." Now I'll just double click this to make it bigger.

So now what we have is a class, it's "public class SmackHeads." In order to actually make some code to execute, we need to make a main method. What the main method is, it's what Java is gonna be executing the code from. But first, a method—what that is—is it is a list of instructions essentially.

So, like, if I had my own method for making soup, like the method for making soup would be like: cut vegetables, sauté vegetables, boil stock, something like that. So the method is the list of instructions that we're going to be doing.

To make the main method, you have to write all this. You don't really have to understand much of it right now because it's just not important, but you write "public static void main." The "public static void" is what's important because that means it's the main method. Then, capital S with "String args" brackets with nothing in them.

This you do need to understand. Now, the curly braces—whatever is in here is the body of the method, just as whatever is within these two is what's in the class, which would be methods.

To make the HelloWorld, it basically prints out "Hello World" to the console. So to do that, you type "System" with a capital S, dot "out," dot "print." Then, in parentheses, you write what you want to print, which we're gonna put in quotes because if you're just printing text, you have to put it in quotes.

So in the close, I'm gonna put "Hello space World," and you have to end the line with a semicolon. So "System.out.print" and "Hello World" and you click this little green button to compile it, and it prints "Hello World" to the console.

Now, there's also "System.out.println," which prints like a newline. So I'll show you the difference between the two. I'm going to make another print statement, and I don't know why I didn't just copy and paste this. Whatever, hi.

So now if I compile this, you see they're right next to each other. Of course, I could just, you know, put a space right here. But if I want them to each be on different lines, I would have to do "System.out.println," and that prints it on a whole nother line.

So if you wanted it to be printed on a whole nother line, use "System.out.println." If you just wanted to print it on the same line, then use "print."

So that is Hello World, and then we'll see you in my next tutorial.

More Articles

View All
The Universe's Biggest Paradoxes
Has anyone ever accused you of acting like you’re the center of the universe? Maybe you were 10 years old, upset that your mom wouldn’t take you to buy candy, or you were so focused on an upcoming project that you totally forgot to wish your coworker cong…
Applying volume of solids | Solid geometry | High school geometry | Khan Academy
We’re told that a cone-shaped grain hopper, and they put the highlight hopper in blue here in case you want to know its definition on the exercise. It’s something that would store grain, and then it can kind of fall out of the bottom. It has a radius of …
Ray Dalio on The Big Debt Cycle
Just frame for us your thoughts on debt for a second. How do you think about debt as an absolute construct or a relative construct, especially sovereign debt? You know, there is a US debt, but then there are also every other 182 countries who have a ton o…
Robot Butterflies FOR THE FUTURE - DEEP DIVE 3 - Smarter Every Day 106
Hey, it’s me Destin, welcome back to Smarter Every Day. So before we start the butterfly deep dive, the one question I get more than anything else here on Smarter Every Day is, what’s your educational background? So, I figured I’d tell you. I got my Bache…
Worked example: exponential solution to differential equation | AP Calculus AB | Khan Academy
So we’ve got the differential equation: the derivative of y with respect to x is equal to 3 times y, and we want to find the particular solution that gives us y being equal to 2 when x is equal to 1. So I encourage you to pause this video and see if you …
Einstein velocity addition formula derivation | Special relativity | Physics | Khan Academy
Let’s say this is me and I am floating in space. My coordinate system, my frame of reference. We’ve seen it before; we’ll call it the S frame of reference. Any space in any point in space-time, we give it X and Y coordinates. And let’s say that we have m…