Strongly-typed languages for web programming

前端 未结 8 2454
南方客
南方客 2021-02-20 16:52

Are there any strongly-typed programming languages for the Web? I program in PHP now, but often I wish it yelled at me when I tried to compare a number to a string. Functions in

相关标签:
8条回答
  • 2021-02-20 17:31

    Java? C++? Any language can be a web language... More details on your requirements would be needed to make a specific recommendation.

    Python is a powerful, and popular dynamic strong typed language for web development:

    • PyWeb
    • Django
    • Pylons

    • Wt is a good C++ web framework

    0 讨论(0)
  • 2021-02-20 17:34

    There is an OCaml web programming framework, and OCaml is strongly and statically typed if that's what you are looking for.

    0 讨论(0)
  • 2021-02-20 17:43

    Wt is a web development framework for C++.

    0 讨论(0)
  • 2021-02-20 17:44

    Python is strongly-typed, and widely used for web.

    0 讨论(0)
  • 2021-02-20 17:46

    Seaside is a web-framework for Smalltalk.

    0 讨论(0)
  • 2021-02-20 17:50

    You can use Java for web development. You would then need Tomcat or another Servlet Container that supports the deployment of Java Servlets and JSPs.

    Best wishes,
    Fabian

    0 讨论(0)
提交回复
热议问题