A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://en.wikipedia.org/wiki/Comparison_of_Java_and_C++ below:

Comparison of Java and C++

From Wikipedia, the free encyclopedia

Comparison between two programming languages

Java and C++ are two prominent object-oriented programming languages. By many language popularity metrics, the two languages have dominated object-oriented and high-performance software development for much of the 21st century, and are often directly compared and contrasted. Java's syntax was based on C/C++.

The differences between the programming languages C++ and Java can be traced to their heritage, as they have different design goals.

C++ was designed for systems and applications programming (i.e., infrastructure programming), extending the procedural programming language C, which was designed for efficient execution. To C, C++ added support for object-oriented programming, exception handling, lifetime-based resource management (Resource Acquisition Is Initialization (RAII)), generic programming, template metaprogramming, and the C++ Standard Library which includes generic containers and algorithms (the Standard Template Library or STL), and many other general purpose facilities.

Java is a general-purpose, concurrent, class-based, object-oriented programming language that is designed to minimize implementation dependencies. It relies on a Java virtual machine to be secure and highly portable. It is bundled with an extensive library designed to provide abstraction of the underlying platform. Java is a statically typed object-oriented language that uses a syntax similar to (but incompatible with) C++. It includes a documentation system called Javadoc.

The different goals in the development of C++ and Java resulted in different principles and design trade-offs between the languages. The differences are as follows:

C++ Java Extends C with object-oriented programming and generic programming. C code can most properly be used. Strongly influenced by C++/C syntax. Compatible with C source code, except for a few corner cases. Provides the Java Native Interface and recently Java Native Access as a way to directly call C/C++ code. However, native languages are not safe and applications using native methods are susceptible to memory corruption. If the code is not carefully written, native methods can lower the performance of the system because the garbage collector is incapable of monitoring or maintaining native memory usage, and there is a cost context-switching between native and non-native code. Write once, compile anywhere (WOCA). Write once, run anywhere/everywhere (WORA/WORE). Allows procedural programming, functional programming, object-oriented programming, generic programming, and template metaprogramming. Favors a mix of paradigms. Allows procedural programming, functional programming (since Java 8) and generic programming (since Java 5), but strongly encourages the object-oriented programming paradigm. Includes support for creating scripting languages. Runs as native executable machine code for the target instruction set(s). Runs on a virtual machine. Provides object types and type names. Allows reflection via run-time type information (RTTI). Is reflective, allowing metaprogramming and dynamic code generation at runtime. Has multiple binary compatibility standards (commonly Microsoft (for MSVC compiler) and Itanium/GNU (for almost all other compilers)). Has one binary compatibility standard, cross-platform for OS and compiler. Optional automated bounds checking (e.g., the at() method in vector and string containers). All operations are required to be bound-checked by all compliant distributions of Java. HotSpot can remove bounds checking. Native unsigned arithmetic support. Native unsigned arithmetic unsupported. Java 8 changes some of this, but aspects are unclear.[3] Standardized minimum limits for all numerical types, but the actual sizes are implementation-defined. Standardized types are available via the standard library <cstdint>. Standardized limits and sizes of all primitive types on all platforms. Pointers, references, and pass-by-value are supported for all types (primitive or user-defined). All types (primitive types and reference types) are always passed by value.[4] Memory management can be done manually via new / delete, automatically by scope, or by smart pointers. Supports deterministic destruction of objects. Garbage collection ABI standardized in C++11, though compilers are not required to implement garbage collection. Automatic garbage collection. Supports a non-deterministic finalize() method, use of which is not recommended.[6][7] Resource management can be done manually or by automatic lifetime-based resource management (RAII). Resource management must generally be done manually, or automatically via finalizers, though this is generally discouraged. Has try-with-resources for automatic scope-based resource management (version 7 onwards).

It can also be done using the internal API sun.misc.Unsafe but that usage is highly discouraged and will be replaced by a public API in an upcoming Java version.

Supports classes, structs (passive data structure (PDS) types), and unions, and can allocate them on the heap or the stack. Classes are allocated on the heap. Java SE 6 optimizes with escape analysis to allocate some objects on the stack. Allows explicitly overriding types, and some implicit narrowing conversions (for compatibility with C). Rigid type safety except for widening conversions. The C++ Standard Library was designed to have a limited scope and functions, but includes language support, diagnostics, general utilities, strings, locales, containers, algorithms, iterators, numerics, input/output, random number generators, regular expression parsing, threading facilities, type traits (for static type introspection) and Standard C Library. The Boost library offers more functions including network I/O.

A rich amount of third-party libraries exist for GUI and other functions like: Adaptive Communication Environment (ACE), Crypto++, various XMPP Instant Messaging (IM) libraries,[8] OpenLDAP, Qt, gtkmm.

The standard library has grown with each release. By version 1.6, the library included support for locales, logging, containers and iterators, algorithms, GUI programming (but not using the system GUI), graphics, multi-threading, networking, platform security, introspection, dynamic class loading, blocking and non-blocking I/O. It provided interfaces or support classes for XML, XSLT, MIDI, database connectivity, naming services (e.g. LDAP), cryptography, security services (e.g. Kerberos), print services, and web services. SWT offered an abstraction for platform-specific GUIs, but was superseded by JavaFX in the latest releases; allowing for graphics acceleration and CSS-themable UIs. Although it doesn't support any kind of "native platform look" support. Operator overloading for most operators. Preserving meaning (semantics) is highly recommended. Operators are not overridable. The language overrides + and += for the String class. Single and multiple inheritance of classes, including virtual inheritance. Only supports single inheritance of classes, however interfaces may multiply extend other interfaces and classes may implement multiple interfaces. Compile-time templates. Allows for Turing complete meta-programming. Generics are used to achieve basic type-parametrization, but they do not translate from source code to byte code due to the use of type erasure by the compiler. Function pointers, function objects, lambdas (in C++11), and interfaces (using abstract classes). Functions references, function objects and lambdas were added in Java 8. Classes (and interfaces, which are classes) can be passed as references as well through SomeClass.class and someObject.getClass(). No standard inline documentation mechanism. Third-party software (e.g. Doxygen) exists. Extensive Javadoc documentation standard on all system classes and methods. const keyword for defining immutable variables and member functions that do not change the object. Const-ness is propagated as a means to enforce, at compile-time, correctness of the code with respect to mutability of objects (see const-correctness). final provides a version of const, equivalent to type* const pointers for objects and const for primitive types. Immutability of object members achieved via read-only interfaces and object encapsulation. Supports the goto statement. Supports labels with loops and statement blocks. goto is a reserved keyword but is marked as "unused" in the Java specification. Source code can be written to be cross-platform (can be compiled for BSD, GNU/Linux, macOS, Solaris, Windows, etc., without modification) and written to use platform-specific features. Typically compiled into native machine code, must be recompiled for each target platform. Compiled into Java bytecode for the JVM. Byte code is dependent on the Java platform, but is typically independent of operating system specific features. C++ Java
class Foo {     // Declares class Foo
    int x = 0;  // Private Member variable. It will
                // be initialized to 0, if the
                // constructor would not set it.
                // (from C++11)
  public:
    Foo(): x{0} // Constructor for Foo; initializes
    {}          // x to 0. If the initializer were
                // omitted, the variable would
                // be initialized to the value that
                // has been given at declaration of x.

    int bar(int i) { // Member function bar()
        return 3 * i + x;
    }
};
class Foo {        // Defines class Foo
    private int x; // Member variable, normally declared
                   // as private to enforce encapsulation
                   // initialized to 0 by default

    public Foo() { // Constructor for Foo
    }              // no-arg constructor supplied by default

    public int bar(int i) {        // Member method bar()
        return 3 * i + x;
    }
}
Foo a;
// declares a to be a Foo object value,
// initialized using the default constructor.

// Another constructor can be used as
Foo a(args);
// or (C++11):
Foo a{args};
Foo a = new Foo();
// declares a to be a reference to a new Foo object
// initialized using the default constructor

// Another constructor can be used as
Foo a = new Foo(args);
Foo b = a;
// copies the contents of a to a new Foo object b;
// alternative syntax is "Foo b(a)"
// Foo b = a;
// would declare b to be reference to the object pointed to by a
Foo b = a.clone();
// copies the contents of the object pointed to by a 
//     to a new Foo object;
// sets the reference b to point to this new object;
// the Foo class must implement the Cloneable interface
//     for this code to compile
a.x = 5; // modifies the object a
a.x = 5; // modifies the object referenced by a
std::println("{}", b.x);
// outputs 0, because b is
// some object other than a
System.out.println(b.x);
// outputs 0, because b points to
// some object other than a
Foo* c;
// declares c to be a pointer to a
// Foo object (initially
// undefined; could point anywhere)
Foo c;
// declares c to be a reference to a Foo
// object (initially null if c is a class member;
// it is necessary to initialize c before use
// if it is a local variable)
c = new Foo;
// c is set to the value of the address of the Foo object created by operator new
c = new Foo();
// binds c to reference a new Foo object
Foo& d = *c;
// binds d to reference the same object to which c points
Foo d = c;
// binds d to reference the same object as c
c->x = 5;
// modifies the object pointed to by c
c.x = 5;
// modifies the object referenced by c
d.bar(5);  // invokes Foo::bar() for a
c->bar(5); // invokes Foo::bar() for *c
d.bar(5); // invokes Foo.bar() for a
c.bar(5); // invokes Foo.bar() for c
std::println("{}", d.x);
// outputs 5, because d references the
// same object to which c points
System.out.println(d.x);
// outputs 5, because d references the
// same object as c
It is possible to declare a pointer or reference to a const object in order to prevent client code from modifying it. Functions and methods can also guarantee that they will not modify the object pointed to by a pointer by using the "const" keyword. This enforces const-correctness.
const Foo* a; // it is not possible to modify the object
              // pointed to by a through a
The final keyword is similar to the const keyword in C++, but its usage is more limited. For the most part, const-correctness must rely on the semantics of the class' interface, i.e., it is not strongly enforced, except for public data members that are labeled final.
final Foo a; // a declaration of a "final" reference:
             // it is possible to modify the object, 
             // but the reference will constantly point 
             // to the first object assigned to it
a = new Foo();
a = new Foo(); // Only in constructor
a->x = 5;
// ILLEGAL
a.x = 5;
// LEGAL, the object's members can still be modified 
// unless explicitly declared final in the declaring class
Foo *const b = new Foo();
// a declaration of a "const" pointer
// it is possible to modify the object,
// but the pointer will constantly point
// to the object assigned to it here
final Foo b = new Foo();
// a declaration of a "final" reference
b = new Foo();
// ILLEGAL, it is not allowed to re-bind it
b = new Foo();
// ILLEGAL, it is not allowed to re-bind it
b->x = 5;
// LEGAL, the object can still be modified
b.x = 5;
// LEGAL, the object can still be modified
Resource management[edit]

The solution to this is to null out object references. A second common reason for memory leak is the use of cache that has become no longer relevant. The solution to memory leaks due to using old cache is to represent the cache using a WeakHashMap.

Templates vs. generics[edit]

Both C++ and Java provide facilities for generic programming, templates and generics, respectively. Although they were created to solve similar kinds of problems, and have similar syntax, they are quite different.

C++ Templates Java Generics Classes, functions, aliases[26] and variables[27] can be templated. Classes and methods can be genericized. Parameters can be variadic, of any type, integral value, character literal, or a class template. Parameters can be any reference type, including boxed primitive types (i.e. Integer, Boolean...). Separate instantiations of the class or function will be generated for each parameter-set when compiled. For class templates, only the member functions that are used will be instantiated. One version of the class or function is compiled, works for all type parameters (via type-erasure). Objects of a class template instantiated with different parameters will have different types at run time (i.e., distinct template instantiations are distinct classes). Type parameters are erased when compiled; objects of a class with different type parameters are the same type at run time. It causes a different constructor. Because of this type erasure, it is not possible to overload methods using different instantiations of the generic class. Implementation of the class or function template must be visible within a translation unit in order to use it. This usually implies having the definitions in the header files or included in the header file. As of C++11, it is possible to use extern templates to separate compiling of some instantiations. Signature of the class or function from a compiled class file is sufficient to use it. Templates can be specialized—a separate implementation could be provided for a particular template parameter. Generics cannot be specialized. Template parameters can have default arguments. Pre-C++11, this was allowed only for template classes, not functions. Generic type parameters cannot have default arguments. Wildcards unsupported. Instead, return types are often available as nested typedefs. (Also, C++11 added keyword auto, which acts as a wildcard for any type that can be determined at compile time.) Wildcards supported as type parameter. Bounding of type parameters and enforcement of relationships between type parameters effectively possible through metaprogramming,[28] or since C++20, directly via std::derived_from and other concepts Supports bounding of type parameters with "extends" and "super" for upper and lower bounds, respectively; allows enforcement of relationships between type parameters. Allows instantiation of an object with the type of the parameter type. Precludes instantiation of an object with the type of the parameter type (except via reflection). Type parameter of class template can be used for static methods and variables. Type parameter of generic class cannot be used for static methods and variables. Static variables unshared between classes and functions of different type parameters. Static variables shared between instances of classes of different type parameters. Class and function templates do not necessarily enforce type relations for type parameters in their declaration. Use of an incorrect type parameter results in compiling failure, often generating an error message within the template code rather than in the user's code that invokes it. Proper use of templated classes and functions is dependent on proper documentation. Metaprogramming provides these features at the cost of added effort. Since C++20, concepts can be used to provide these features. Generic classes and functions can enforce type relationships for type parameters in their declaration. Use of an incorrect type parameter results in a type error within the code that uses it. Operations on parametrized types in generic code are only allowed in ways that can be guaranteed to be safe by the declaration. This results in greater type safety at the cost of flexibility. Templates are Turing-complete (see template metaprogramming). Generics are also Turing-complete[29]

An example comparing C++ and Java exists in Wikibooks.

In addition to running a compiled Java program, computers running Java applications generally must also run the Java virtual machine (JVM), while compiled C++ programs can be run without external applications. Early versions of Java were significantly outperformed by statically compiled languages such as C++. This is because the program statements of these two closely related languages may compile to a few machine instructions with C++, while compiling into several byte codes involving several machine instructions each when interpreted by a JVM. For example:

Java/C++ statement C++ generated code (x86) Java generated byte code a[i]++;
mov edx,[ebp+4h]
mov eax,[ebp+1Ch]
inc dword ptr [edx+eax*4]
aload_1
iload_2
dup2
iaload
iconst_1
iadd
iastore

Since performance optimization is a very complex issue, it is very difficult to quantify the performance difference between C++ and Java in general terms, and most benchmarks are unreliable and biased. Given the very different natures of the languages, definitive qualitative differences are also difficult to draw. In a nutshell, there are inherent inefficiencies and hard limits on optimizing in Java, given that it heavily relies on flexible high-level abstractions, however, the use of a powerful JIT compiler (as in modern JVM implementations) can mitigate some issues. In any case, if the inefficiencies of Java are too great, compiled C or C++ code can be called from Java via the JNI.

Some inefficiencies that are inherent to the Java language include, mainly:

However, there are a number of benefits to Java's design, some realized, some only theorized:

Also, some performance problems occur in C++:

Official standard and reference of the language[edit] Language specification[edit]

The C++ language is defined by ISO/IEC 14882, an ISO standard, which is published by the ISO/IEC JTC1/SC22/WG21 committee. The latest, post-standardization draft of C++17 is available as well.[40]

The C++ language evolves via an open steering committee called the C++ Standards Committee. The committee is composed of the creator of C++ Bjarne Stroustrup, the convener Herb Sutter, and other prominent figures, including many representatives of industries and user-groups (i.e., the stake-holders). Being an open committee, anyone is free to join, participate, and contribute proposals for upcoming releases of the standard and technical specifications. The committee now aims to release a new standard every few years, although in the past strict review processes and discussions have meant longer delays between publication of new standards (1998, 2003, and 2011).

The Java language is defined by the Java Language Specification,[41] a book which is published by Oracle.

The Java language continuously evolves via a process called the Java Community Process, and the world's programming community is represented by a group of people and organizations - the Java Community members[42]—which is actively engaged into the enhancement of the language, by sending public requests - the Java Specification Requests - which must pass formal and public reviews before they get integrated into the language.

The lack of a firm standard for Java and the somewhat more volatile nature of its specifications have been a constant source of criticism by stake-holders wanting more stability and conservatism in the addition of new language and library features. In contrast, the C++ committee also receives constant criticism, for the opposite reason, i.e., being too strict and conservative, and taking too long to release new versions.

"C++" is not a trademark of any company or organization and is not owned by any individual.[43] "Java" is a trademark of Oracle Corporation.[44]

  1. ^ "Unsigned Integer Arithmetic API now in JDK 8". Archived from the original on 25 February 2017. Retrieved 17 March 2014.
  2. ^ "The Java Tutorials: Passing Information to a Method or a Constructor". Oracle. Retrieved 17 February 2013.
  3. ^ "The Java Tutorials: Object as a Superclass". Oracle. Retrieved 17 February 2013..
  4. ^ a b c d e f g h i j k l Bloch 2018, pp. 29–33, Chapter §2 Item 8: Avoid finalizers and cleaners.
  5. ^ "XMPP Software » Libraries". xmpp.org. Retrieved 13 June 2013.
  6. ^ Robert C. Martin (January 1997). "Java vs. C++: A Critical Comparison" (PDF). Archived from the original (PDF) on 11 May 2008. Retrieved 15 December 2007.
  7. ^ "Reference Types and Values". The Java Language Specification, Third Edition. Retrieved 9 December 2010.
  8. ^ Horstmann, Cay; Cornell, Gary (2008). Core Java. Vol. I (Eighth ed.). Sun Microsystems. pp. 140–141. ISBN 978-0-13-235476-9. Some programmers (and unfortunately even some book authors) claim that the Java programming language uses call by reference for objects. However, that is false. Because this is such a common misunderstanding, it is worth examining a counterexample in some detail... This discussion demonstrates that the Java programming language does not use call by reference for objects. Instead object references are passed by value.
  9. ^ Deitel, Paul; Deitel, Harvey (2009). Java for Programmers. Prentice Hall. p. 223. ISBN 978-0-13-700129-3. Unlike some other languages, Java does not allow programmers to choose pass-by-value or pass-by-reference—all arguments are passed by value. A method call can pass two types of values to a method—copies of primitive values (e.g., values of type int and double) and copies of references to objects (including references to arrays). Objects themselves cannot be passed to methods.
  10. ^ "Semantics of Floating Point Math in GCC". GNU Foundation. Retrieved 20 April 2013.
  11. ^ "Microsoft c++ compiler, /fp (Specify Floating-Point Behavior)". Microsoft Corporation. Retrieved 19 March 2013.
  12. ^ "Java Language Specification 4.3.1: Objects". Sun Microsystems. Retrieved 9 December 2010.
  13. ^ Standard for Programming Language C++ '11, 5.3.2 Increment and decrement [expr.pre.incr].
  14. ^ The Java™ Language Specification, Java SE 7 Edition, Chapters 15.14.2, 15.14.3, 15.15.1, 15.15.2, http://docs.oracle.com/javase/specs/
  15. ^ Satish Chandra Gupta; Rajeev Palanki (16 August 2005). "Java memory leaks – Catch me if you can". IBM DeveloperWorks. Archived from the original on 22 July 2012. Retrieved 2 April 2015.
  16. ^ How to Fix Memory Leaks in Java by Veljko Krunic (10 Mar 2009)
  17. ^ Creating a memory leak with Java on stackoverflow.com
  18. ^ "Type alias, alias template". cppreference.com. Retrieved 4 October 2022.
  19. ^ "Variable template". cppreference.com. Retrieved 4 October 2022.
  20. ^ Boost type traits library
  21. ^ Java Generics Are Turing Complete
  22. ^ C++ Standards Committee. (2018). P0581R1 - Modules for C++. Retrieved from https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p0581r1.pdf
  23. ^ C++ Standards Committee. (2021). P2412R0 - Further refinements to the C++ Modules Design. Retrieved from https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2021/p2412r0.pdf
  24. ^ Clark, Nathan; Amir Hormati; Sami Yehia; Scott Mahlke (2007). "Liquid SIMD: Abstracting SIMD hardware using lightweight dynamic mapping". Hpca'07: 216–227.
  25. ^ Hundt, Robert (27 April 2011). "Loop Recognition in C++/Java/Go/Scala" (PDF). Stanford, California: Scala Days 2011. Archived (PDF) from the original on 9 October 2022. Retrieved 17 November 2012. Java shows a large GC component, but a good code performance. [...] We find that in regards to performance, C++ wins out by a large margin. [...] The Java version was probably the simplest to implement, but the hardest to analyze for performance. Specifically the effects around garbage collection were complicated and very hard to tune; 318 kB
  26. ^ Matthew Hertz, Emery D. Berger (2005). "Quantifying the Performance of Garbage Collection vs. Explicit Memory Management" (PDF). OOPSLA 2005. Archived from the original (PDF) on 6 July 2017. Retrieved 15 March 2015. In particular, when garbage collection has five times as much memory as required, its runtime performance matches or slightly exceeds that of explicit memory management. However, garbage collection's performance degrades substantially when it must use smaller heaps. With three times as much memory, it runs 17% slower on average, and with twice as much memory, it runs 70% slower.
  27. ^ Alexandrescu, Andrei (2001). Addison-Wesley (ed.). Modern C++ Design: Generic Programming and Design Patterns Applied. Chapter 4. pp. 77–96. ISBN 978-0-201-70431-0.
  28. ^ "Boost Pool library". Boost. Retrieved 19 April 2013.
  29. ^ Targeting IA-32 Architecture Processors for Run-time Performance Checking
  30. ^ "Fixing The Inlining "Problem" by Dr. Cliff Click |Azul Systems: Blogs". Archived from the original on 7 September 2011. Retrieved 23 September 2011.
  31. ^ Oracle Technology Network for Java Developers
  32. ^ "Working Draft, Standard for Programming Language C++" (PDF). Archived (PDF) from the original on 9 October 2022.
  33. ^ The Java Language Specification
  34. ^ The Java Community Process(SM) Program - Participation - JCP Members
  35. ^ Bjarne Stroustrup's FAQ: Do you own C++?
  36. ^ ZDNet: Oracle buys Sun; Now owns Java Archived 10 April 2010 at the Wayback Machine.

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.3