Python Vs Java

Untitled Forums Programming Assignment Help Python Vs Java

Tagged: ,

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #16204
    shreyas
    Member

    Python Vs Java

    #16205
    shreyas
    Member

    Python programs are generally expected to run slower than Java programs, but they also take much less time to develop. Python programs are typically 3-5 times shorter than equivalent Java programs. This difference can be attributed to Python’s built-in high-level data types and its dynamic typing. For example, a Python programmer wastes no time declaring the types of arguments or variables, and Python’s powerful polymorphic list and dictionary types, for which rich syntactic support is built straight into the language, find a use in almost every Python program. Because of the run-time typing, Python’s run-time must work harder than Java’s. For example, when evaluating the expression, a+b, it must first inspect the objects a and b to find out their type, which is not known at compile time. It then invokes the appropriate addition operation, which may be an overloaded user-defined method. Java, on the other hand, can perform an efficient integer or floating-point addition, but requires variable declarations for a and b, and does not allow overloading of the + operator for instances of user-defined classes.

    For these reasons, Python is much better suited as a “glue” language, while Java is better characterized as a low-level implementation language. In fact, the two together make an excellent combination. Components can be developed in Java and combined to form applications in Python; Python can also be used to prototype components until their design can be “hardened” in a Java implementation. To support this type of development, a Python implementation written in Java is under development, which allows calling Python code from Java and vice versa. In this implementation, Python source code is translated to Java bytecode (with help from a run-time library to support Python’s dynamic semantics).

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.