What is the difference between java and jsp?

前端 未结 4 1186
-上瘾入骨i
-上瘾入骨i 2021-01-05 14:15
  1. are java applets and jsp pages written in the same langue (java)?
  2. is java a language?
  3. Is java used for web or other things as well?

an

4条回答
  •  伪装坚强ぢ
    2021-01-05 14:45

    1. Yes
    2. Yes
    3. It's a general purpose language, it's used for just about everything

    Java is most similar to C#, they're both syntactically similar and get compiled to an intermediate language rather than native code (for Java, it runs on the Java Virtual Machine, for C# it's the Common Language Runtime). JSP is most similar to ASP.

    Java's another programming language, it's also the world's most popular language. Try the wikipedia page for it

提交回复
热议问题