To sum it up, just because that topic still exists and just because there's still tolerance for such garbage and missleading topics to exist in here.
Files worse than the free version, https://bitbucket.org/MobiusDev/l2j_mobius.git/src
A dumb fuck that claims that mobius sources contain backdoors yet none found so far in an opensource project.
4 Pages of replies to a "very skilled developer" that uses google translate in order to reply in his own topic.
Yet this topic is still available. Every traffic is a good traffic I guess!
Question
SadStatue
Μέρα
Έχω μια ερώτηση.
Σε μια μεταβλητή x
το ++x; και το x++; θα κάνουν ακριβώς την ίδια δουλεία;
Δηλαδή αυτό:
public static void main (String args[])
{
int x = 0;
x++;
}
Θα κάνει ακριβώς το ίδιο με αυτό?
public static void main (String args[])
{
int x = 0;
++x;
}
-------------------------
Edit : Prefix
Edited by SadStatue7 answers to this question
Recommended Posts