Hi to all
Some body told me java is 99% OOP and C# is 100% can any one tell which thing is make java 99% OOP.........?
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
Hi to all
Some body told me java is 99% OOP and C# is 100% can any one tell which thing is make java 99% OOP.........?
The Java primitive data types.
Useful links: How to Ask Questions the Smart Way | Use Code Tags | Java Tutorials
Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!
The Java primitive data types
int, string, float etc..............?
these types.................?
int, float etc....int, string, float etc..............?
String is not primitive data type.
double, float, int, long, short, byte, boolean <---- Those
Java HIGHLY encourages you (and by that I mean puts a knife to your throat) to program in an OO way. However, no language can control how you program. OO, functional, imperative, etc.. they are all just paradigms. OOP is just a style by which you program, and the style most Java programmers prefer because Java will provide the most maintainability and efficiency when it is used.