Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GWT 中的托管模式和开发模式有什么区别?
托管模式是开发模式的旧名称,它们是相同的。
有两种模式,目前称为开发模式和生产模式
开发模式运行 Java,而生产模式编译为 JavaScript。
这意味着在开发模式下,您使用的是真正的 java.lang.String 或 java.util.ArrayList 例如,而在生产模式下,它是正在使用的模拟版本。
有时会导致不同的结果(Java 的 Date 与 JavaScript 的完全不同)