+ 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
24 Antworten
+ 1
Start to read a book and watch video tutorials. If you want to learn something particular just Google it.
+ 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.
+ 1
Java for what ? if pure Java, then Oracle site is a complete resource. if for Android development , then check out Android.developer site
+ 1
@farshaad heydari
thanks!
+ 1
where is the code?
+ 1
past the code in play ground and send it's link.
+ 1
remove "int" before y .
+ 1
Thanks again!
+ 1
Thanks!!!
0
@abc do you have any book or a video in particular that I can use, if no, so thanks!
0
thanks, I really appreciate it!!
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...
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
}
}
}
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)
0
Thanks!!!!!!
0
@farshaad heydari
please, can you send me the link for android.developer site?
0
I can't find it....
0
did you Google it?