You don’t need an array of const objects. A pointer-to-const can point to either const or non-const objects; you can create a dynamic array and initialise a Chunk structure from it like this:
std::vector<Int16> samples;
initialise(samples);
// valid until 'samples' is destroyed or resized
SoundStream::Chunk chunk = {&samples[0], samples.size()};
Related Posts:
- C++: Expression must have a constant value when declaring array inside function
- Return array in a function
- What is the difference between const int*, const int * const, and int const *?
- What is the difference between const int*, const int * const, and int const *?
- Passing a 2D array to a C++ function
- How to make an array with a dynamic size? General usage of dynamic arrays (maybe pointers too)?
- Delete 2D array C++
- C++ pass an array by reference
- C++ Array of pointers: delete or delete []?
- C++ correct way to return pointer to array from function
- Warning: comparison of distinct pointer types
- Is C++ Array passed by reference or by pointer?
- Array of Linked Lists C++
- How to dynamically allocate arrays in C++
- How to dynamically allocate arrays in C++
- What are the differences between a pointer variable and a reference variable in C++?
- How do I find the length of an array?
- Initializing an array of objects
- Passing an array by reference
- What does “dereferencing” a pointer mean?
- What is meant with “const” at end of function declaration? [duplicate]
- Regular cast vs. static_cast vs. dynamic_cast
- What is a smart pointer and when should I use one?
- What does “dereferencing” a pointer mean?
- What is a char*?
- Passing an array by reference
- What exactly is nullptr?
- How to convert a char array to a string?
- How to fix a “invalid operands to binary expression” error?
- What is the array form of ‘delete’?
- Difference between `constexpr` and `const`
- Use new operator to initialise an array
- How do I declare a 2d array in C++ using new?
- What is a dangling pointer?
- What does `*&` in a function declaration mean?
- (->) arrow operator and (.) dot operator , class pointer
- lvalue required as left operand of assignment – Array
- What is uintptr_t data type
- C++ – No matching member function for call to ‘push_back’
- What is uintptr_t data type
- What does int & mean
- Vector is not a Template?
- Difference between const reference and normal parameter
- Pointer to incomplete class type is not allowed
- invalid use of non-static member function
- Is there a function to copy an array in C/C++?
- How to convert a std::string to const char* or char*
- Cleanest way to copy a constant size array in c++11
- Reverse Contents in Array
- C++ error: “Array must be initialized with a brace enclosed initializer”
- What is the difference between a static and const variable?
- warning: ISO C++ forbids variable length array
- c++ array – expression must have a constant value
- How can I convert const char* to string and then back to char*?
- Can’t resolve Error: indirection requires pointer operand (‘int’ invalid)
- Static array vs. dynamic array in C++
- How to access the contents of a vector from a pointer to the vector in C++?
- Fill array with random numbers within a specified range (C++)
- Remove an array element and shift the remaining ones
- How to add element to C++ array?
- How to convert vector to array
- How to find the size of an int[]?
- What does int & mean
- splitting a string into an array in C++ without using vector
- What’s the syntax for declaring an array of function pointers without using a separate typedef?
- What is the difference between const_iterator and non-const iterator in the C++ STL?
- Printing an array in C++?
- Sorting Linked List C++ with pointers
- Is the sizeof(some pointer) always equal to four?
- How do you initialise a dynamic array in C++?
- C++ array assign error: invalid array assignment
- C++ Expression must have pointer-to-object type
- C++ strings and pointers
- initial value of reference to non-const must be an lvalue
- Typedef function pointer?
- How to initialize a vector of pointers
- What is the use of intptr_t?
- How to add element to C++ array?
- Reading from .txt file into two dimensional array in c++
- extended initializer lists only available with
- Creation of Dynamic Array of Dynamic Objects in C++
- how to initialize an empty integer array in c++
- C++ – Assigning null to a std::string
- Check if C++ Array is Null
- Correct way to work with vector of arrays
- Resizing dynamic array in c++
- C++ Initializing a Global Array
- Comparing the values of char arrays in C++
- How to call on a function found on another file?
- Dynamically allocated string array, then change it’s value?
- error: invalid initialization of non-const reference of type ‘int&’ from an rvalue of type ‘int’
- Using C-string gives Warning: “Address of stack memory associated with local variable returned”
- Reference to non-static member function must be called
- How can I assign an array from an initializer list?
- Why use pointers?
- How do I return a char array from a function?
- What’s the difference between * and & in C?
- creating an array of structs in c++
- Reading data from file into an array
- How to read lines of text from file and put them into an array