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.
我有一个简单的问题,但我很困惑所以问。这两种情况有什么区别。
1)
DataSet ds = getUsers();
2)
DataSet ds = new DataSet(); ds = getUsers();
版本 (2) 创建一个新的 DataSet,然后将其交给垃圾收集。除此之外,它们是相同的。
在版本 1 中会发生以下情况:
getUsers
DataSet
ds
在版本 2 中会发生以下情况: