为什么 deque 的 pop_front() 和 pop_back() 不是 noexcept?
Why are deque's pop_front() and pop_back() not noexcept?
在 C++11 及更高版本中,std::deque
的 pop_front()
和 pop_back()
不是 noexcept
有什么原因吗?或者只是被遗忘了?
在 C++11 及更高版本中,std::deque
的 pop_front()
和 pop_back()
不是 noexcept
有什么原因吗?或者只是被遗忘了?