为什么list()与对象分别显示不同的结果?

时间:2017-05-30 19:15:42

标签: python list

第二次结果为deviceContext->BeginDraw(); D2D1_COLOR_F d2dColor = {}; deviceContext->Clear(d2dColor); // THIS LINE FAILS WITH THE DEBUG BREAKPOINT IF SINGLE CHANNELED deviceContext->DrawBitmap(bitmap, nullptr, 1.0f, D2D1_INTERPOLATION_MODE_LINEAR, nullptr); swapChain->Present(1, 0); deviceContext->EndDraw(); None。任何人都有这方面的线索?

list(a)

1 个答案:

答案 0 :(得分:7)

iterkeys返回迭代器,与任何迭代器一样,只能在上迭代

list使用整个迭代器,因此后者无法提供更多值,因此后续列表为空。