Java tutorial for beginners
#Java #tutorial #beginners
⭐️Time Stamps⭐️
00:00:00 start here I guess...
00:00:35 java introduction
00:01:02 java compilation
00:02:05 byte code
00:02:46 what is a JDK?
00:03:14 JDK download
00:04:07 what is an IDE?
00:04:45 IDE download
00:06:06 project setup
00:07:34 classes
00:09:19 main method
00:10:58 print()
00:11:41 println()
00:12:49 escape characters
00:15:22 comments
00:16:20 tips & tricks
#java #tutorial #beginners
public class Main {
public static void main(String[] args) {
System.out.println("SMASH the LIKE button!");
System.out.println("DROP a COMMENT down below!");
System.out.println("SUBSCRIBE if you'd like to become a fellow BRO!");
// This is a comment
/*
This
is
a
comment
*/
}
}
コメント