我想使用一种特殊方法,以启动<代码>std:vector<unsign int>,这在《C++》一书中被描述为参考(Ulrich Breymann的德国书《Der C++ Programmer》)。 该书是关于STL系列的一节,特别提及list
、vector
和deque
。 在该节中,他写道,有两种类型的特别建筑商,即如果是<代码>。 X 指这种类型,
X(n, t) // creates a sequence with n copies of t
X(i, j) // creates a sequence from the elements of the interval [i, j)
我想利用第二版<代码>在t上签字,即:
std::vector<unsigned int> l(1U, 10U);
采用<代码>{1,2,...,9}的初始清单。 然而,我得到的是一种病媒,有一张<条码>,在t上签字,价值10:> 第二个变量是否存在,如果是,我如何迫使它被称作?