何时是使用“new”关键字的适当时间?
2022-09-02 11:48:22
何时有必要在 Java 中使用关键字。我知道当你创建一个对象的实例时,你应该使用它,就像这样:new
TextView textView = new TextView(this);
有时在代码中,我注意到没有使用,我感到困惑。在这行代码中:new
AssetManager assetManager = getAssets();
为什么不像这样创建资产管理器的实例:
AssetManager assetManager = new AssetManager();
那么它被设置为等于 getAssests()?
何时应使用?new
谢谢!