Namespaces
Variants
Actions

va_copy

From cppreference.com
< cpp‎ | utility‎ | variadic
 
 
Utilities library
General utilities
Relational operators (deprecated in C++20)
(C++20)(C++20)(C++20)  
(C++20)
(C++20)
(C++14)
(C++11)
(C++11)
(C++23)
(C++11)
(C++17)
Common vocabulary types
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)


 
 
Defined in header <cstdarg>
void va_copy( std::va_list dest, std::va_list src );
(since C++11)

The va_copy macro copies src to dest.

va_end should be called on dest before the function returns or any subsequent re-initialization of dest (via calls to va_start or va_copy).

[edit] Parameters

dest - an instance of the va_list type to initialize
src - the source va_list that will be used to initialize dest

[edit] Expanded value

(none)

[edit] Example

Run this code
#include <cmath>
#include <cstdarg>
#include <iostream>
 
double sample_stddev(int count, ...) 
{
 double sum = 0;
 std::va_list args1;
 va_start (args1, count);
 std::va_list args2;
 va_copy(args2, args1);
 for (int i = 0; i < count; ++i)
 {
 double num = va_arg (args1, double);
 sum += num;
 }
 va_end (args1);
 double mean = sum / count;
 
 double sum_sq_diff = 0;
 for (int i = 0; i < count; ++i)
 {
 double num = va_arg (args2, double);
 sum_sq_diff += (num - mean) * (num - mean);
 }
 va_end (args2);
 return std::sqrt (sum_sq_diff / count);
}
 
int main() 
{
 std::cout << sample_stddev(4, 25.0, 27.3, 26.9, 25.7) << '\n';
}

Output:

0.920258

[edit] See also

enables access to variadic function arguments
(function macro) [edit]
accesses the next variadic function argument
(function macro) [edit]
ends traversal of the variadic function arguments
(function macro) [edit]
C documentation for va_copy
Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/utility/variadic/va_copy&oldid=161415"

AltStyle によって変換されたページ (->オリジナル) /