Java版的Python,Jython

來源:互聯網
上載者:User

今天突然發現有一個叫Jython的指令碼語言,他是一個用Java實現的Python。

咱們來看看他們之間有什麼不同。

原文參考地址http://wiki.python.org/jython/WhyJython
為什麼要 Jython

現在有許多語言實現了 Java VM. 下面的這些介紹將 Jython 其他的語言實現中區分開來:

  • 動態地編譯成 Java 位元組碼
  • 擴充Java原有Class的能力
  • 能建立多中類型的程式
  • 具有Bean的屬性
  • Python 的文法

為什麼 Jython 做得非常好?

  • Prototyping
  • Java investigation
    •     >>> from java.util import Date
      >>> d = Date()
      >>> print d
      Sat Jan 08 16:26:16 CST 2005
      >>> from java.util import Random
      >>> print dir(Random)
      ['__init__', 'nextBoolean', 'nextBytes', 'nextDouble', 'nextFloat',
      'nextGaussian', 'nextInt', 'nextLong', 'seed', 'setSeed']
      >>>
  • Making bean properties accessible
    •     >>> print Date().time
      1105500911121
  • Glues together libraries already written in Java
  • Excellent embedded scripting language
    • Object Domain UML Tool
    • PushToTest

    • Drools

Python & Jython 的區別

Python

  • C
  • Multi-platform
  • Compiles to .pyc
  • Extend with C
  • GIL 1

  • Python Garbage Collection

Jython

  • 100% Java
  • Any JVM (currently 1.1+)
  • Compiles to .class
  • Extend with Java
  • Truly multi-threaded
  • Java garbage collection

看到以上這些,我不禁要為這些為軟體默默奉獻的人感到敬佩。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.