0

I want to modify one of the API methods which returns an object. I think it should return a tuple of objects. I don't want to change the way people call this API method. Is there any way to return a tuple of objects that can be referenced directly for the first object?

4

1 に答える 1

0

オブジェクトを返す関数を変更して、代わりにタプルを返す場合は、関数の呼び出し元を変更する必要があります。それを回避する方法はありません。呼び出し元を変更して最初のオブジェクトのみを抽出するか、変更されていないコードには、以前はオブジェクトがあった場所にタプルが含まれます。

于 2012-07-07T00:24:19.837 に答える