Where can I master java and know all about it? Is there a website or an app to do it? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Where can I master java and know all about it? Is there a website or an app to do it?

The title says it all

24th Feb 2018, 6:24 PM
M.A
M.A - avatar
24 Answers
+ 1
Start to read a book and watch video tutorials. If you want to learn something particular just Google it.
24th Feb 2018, 6:38 PM
abc
abc - avatar
+ 1
So many books are outdated , but they give you a good baseline. For example I would begin with 'Thinking in java'. In this book are covered the most important topics of java . Sometimes it may be difficult to understand some concepts , but you can find an easier explanation in web. One important note : try to practice every thing you've learned.
24th Feb 2018, 6:44 PM
abc
abc - avatar
+ 1
Java for what ? if pure Java, then Oracle site is a complete resource. if for Android development , then check out Android.developer site
24th Feb 2018, 7:01 PM
Farshaad Heydari
Farshaad Heydari - avatar
+ 1
@farshaad heydari thanks!
24th Feb 2018, 7:03 PM
M.A
M.A - avatar
+ 1
where is the code?
24th Feb 2018, 7:39 PM
Farshaad Heydari
Farshaad Heydari - avatar
+ 1
past the code in play ground and send it's link.
24th Feb 2018, 7:42 PM
Farshaad Heydari
Farshaad Heydari - avatar
+ 1
remove "int" before y .
24th Feb 2018, 7:45 PM
Farshaad Heydari
Farshaad Heydari - avatar
+ 1
Thanks again!
28th Feb 2018, 10:25 AM
M.A
M.A - avatar
+ 1
Thanks!!!
28th Feb 2018, 11:04 AM
M.A
M.A - avatar
0
@abc do you have any book or a video in particular that I can use, if no, so thanks!
24th Feb 2018, 6:39 PM
M.A
M.A - avatar
0
thanks, I really appreciate it!!
24th Feb 2018, 6:45 PM
M.A
M.A - avatar
0
Hey, how can I re define a variable in Java, it says that it is already defined but I want to change the value...
24th Feb 2018, 7:33 PM
M.A
M.A - avatar
0
public class MyClass { public static void main(String[ ] args) { int x = 2; int y = x % 2; while (x <= 10) { if (y == 0) { System.out.println("Even"); } else { System.out.println("Odd"); } x = x+1 } } }
24th Feb 2018, 7:40 PM
M.A
M.A - avatar
0
when you say "int y ".... it means that you want to create a brand new variable (not assigning new value to an old variable) and you can't have two variables with the same name ( inside one place)
24th Feb 2018, 7:49 PM
Farshaad Heydari
Farshaad Heydari - avatar
0
Thanks!!!!!!
27th Feb 2018, 1:25 PM
M.A
M.A - avatar
0
@farshaad heydari please, can you send me the link for android.developer site?
28th Feb 2018, 10:18 AM
M.A
M.A - avatar
0
I can't find it....
28th Feb 2018, 10:18 AM
M.A
M.A - avatar
0
did you Google it?
28th Feb 2018, 10:19 AM
Farshaad Heydari
Farshaad Heydari - avatar
28th Feb 2018, 10:20 AM
Farshaad Heydari
Farshaad Heydari - avatar