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.........?
Printable View
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.
The Java primitive data types
int, string, float etc..............?
these types.................?
int, float etc....Quote:
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.