标签: c++ arrays performance vector size
这是我的代码:
$string = /* the really long string */ $field_x = substr($string, 0, 3); $field_y = substr($string, 3, 9); /* etc */
如您所见,它将数字存储在矢量中,这很好。我的问题是,当向量存储时,程序将如何表现,比方说,5000加数?对运行应用程序的计算机的内存和处理器有什么影响?