站内搜索: 请输入搜索关键词
当前页面: 图书首页 > NET For Java Developers Migrating To C#

NET For Java Developers Migrating To C#

[ directory ] Previous Section Next Section

8.13 Object Creation Operator

The new operator is used to create new objects, value types, or structs. This operator cannot be overloaded.

object o = new object();
int ii = new int();
    [ directory ] Previous Section Next Section