简体   繁体   中英

What is the difference between std::valarray and std::array

valarray类看起来与array类相同,你能解释一下我在哪里更喜欢valarray不是array ,反之亦然?

  • valarray was already in C++03, array is new in C++11
  • valarray is variable length, array is not.
  • valarray is designed for numeric computations and provides plenty of operations including + , - , * , cos , sin , etc... array does not.
  • valarray has an interface to retrieve slices of the array (sub arrays), array does not.

The class templates related to std::valarray<T> are intended to support optimizations techniques known as expression templates . I haven't tried to do this but my understanding is that the specification doesn't quite require this and also doesn't really support this sufficiently. In general std::valarray<T> is a fairly specialized class and it isn't really broadly used. Also, I think the template arguments support for std::valarray<T> are a limited set (eg the numeric built-in types).

On the other std::array<T, n> is a fixed size array supporting, as far as possible while being fixed size, the normal container interface. Essentially, std::array<T> is a more convenient to use version of T[n] .

valarray is a dynamic data structure, whose size can change at runtime and which performs dynamic allocation. array is a static data structure whose size is determined at compile time (and it is also an aggregate).

Don't use valarray , though; just use a vector instead.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM