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.

Results 1 to 6 of 6

Thread: Is Java 100% OOP

  1. #1
    Junior Member
    Join Date
    Dec 2011
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Is Java 100% OOP

    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.........?


  2. #2
    Super Moderator helloworld922's Avatar
    Join Date
    Jun 2009
    Posts
    2,896
    Thanks
    23
    Thanked 619 Times in 561 Posts
    Blog Entries
    18

    Default Re: Is Java 100% OOP

    The Java primitive data types.

  3. #3
    Crazy Cat Lady KevinWorkman's Avatar
    Join Date
    Oct 2010
    Location
    Washington, DC
    Posts
    5,424
    My Mood
    Hungover
    Thanks
    144
    Thanked 636 Times in 540 Posts

    Default Re: Is Java 100% OOP

    Quote Originally Posted by kbbaloch View Post
    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.........?
    What exactly does it mean to be a certain percentage OOP? This is one of those statements that sounds like a valid argument but doesn't actually mean very much.
    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!

  4. #4
    Junior Member
    Join Date
    Dec 2011
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Is Java 100% OOP

    The Java primitive data types

    int, string, float etc..............?

    these types.................?

  5. #5
    Think of me.... Mr.777's Avatar
    Join Date
    Mar 2011
    Location
    Pakistan
    Posts
    1,136
    My Mood
    Grumpy
    Thanks
    20
    Thanked 82 Times in 78 Posts
    Blog Entries
    1

    Default Re: Is Java 100% OOP

    int, string, float etc..............?
    int, float etc....
    String is not primitive data type.

  6. #6
    Member
    Join Date
    Jun 2011
    Posts
    182
    My Mood
    Where
    Thanks
    15
    Thanked 8 Times in 8 Posts

    Default Re: Is Java 100% OOP

    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.