0 Members and 1 Guest are viewing this topic.
Why do you say Java has the most powerful OOP system?
Quote from: merthsoft on March 11, 2011, 02:29:30 pmWhy do you say Java has the most powerful OOP system?he says its just his opinion. I may have misunderstood you, but Omnimaga's not a place for debating which language is the best. Unless the topic is a poll to find out which is the community favorite.
Quote from: yunhua98 on March 11, 2011, 02:40:49 pmQuote from: merthsoft on March 11, 2011, 02:29:30 pmWhy do you say Java has the most powerful OOP system?he says its just his opinion. I may have misunderstood you, but Omnimaga's not a place for debating which language is the best. Unless the topic is a poll to find out which is the community favorite. I know he said it was his opinion, that's why I said "why do you say" not "why is". I'm simply asking him to elaborate on his opinion about a language that is directly related to the topic. He wants us to learn OOP, I want to learn what about Java OOP he thinks makes it the best. I'm not debating him, I'm asking him a question.
Since this cripples people's ability to do advanced computer programming, or even higher level applications, I would like to set up this thread so that people can ask questions about it, and I can answer and post help articles.
I personally like python because it uses indentation instead of semicolons and braces. I find it easier to read.
0->X:0->Y:0->RX+sin(R)*10->X:Y+cos(R)*10->Y
class Ship{public int x;public int y;public float rotation;}
public void Move(float amount){X += Cos(Rotation) * amount;Y += Sin(Rotation) * amount;}
Ship ship = new Ship();ship.rotation = Pi;ship.Move(10);Print(ship.x);