Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8939623
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T10:51:42+00:00 2026-06-15T10:51:42+00:00

How can i use std::swap to copy a vector to a vector in an

  • 0

How can i use std::swap to copy a vector to a vector in an struct? Heres an example of what i’m tying to do

#include<vector>

using namespace std;

struct test{
    vector<int> a;
    vector<int> b;
};

int main(){

    int data[] = { 1, 2, 3 };
    int data2[] = {3,4,5 };
std::vector<int> c( &data[0], &data[0]+sizeof(data)/sizeof(data[0]));
std::vector<int> d( &data2[0], &data2[0]+sizeof(data2)/sizeof(data2[0]));


    test A = test(swap(c) , swap(d) );



}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T10:51:43+00:00Added an answer on June 15, 2026 at 10:51 am

    You can’t swap into a constructor or function argument. You can only swap into an lvalue. This is one of the reasons why C++11 introduced move semantics to begin with: to allow the user to explicitly move objects into parameters and so forth.

    So you would need to give test an appropriate constructor and call it, using std::move to convert your lvalue vector objects into rvalue references.

    struct test{
        test(vector<int> _a, vector<int> _b) : a(std::move(_a)), b(std::move(_b)) {}
        vector<int> a;
        vector<int> b;
    };
    
    ...
    
    test A{std::move(c), std::move(d)};
    

    If you really want to copy the vectors, you would do this instead:

    test A{c, d};
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here's what I'm trying to achieve: #include <iostream> using std::cout; #include <vector> using std::vector;
Borrowing Howard Hinnant's example and modifying it to use copy-and-swap, is this op= thread-safe?
I can think of three ways of filling a std::vector Suppose we have vector<int>
I have defined two dimensional array using following definition typedef std::vector<std::vector<short> > table_t; Can
How can I use std::shared_ptr for array of double? Additionally what are advantages/disadvantages of
I would like to copy the content of one std::map into another. Can I
I have std::vector<int> around , in which I need to update(/overwrite) N values starting
I was wondering with my colleague today whether std::vector can be implemented to make
In C++ you can use std::numeric_limits<FloatingPointType>::digits10 to find out exactly how many places of
How does one can use std::bind (not boost::bind) on __stdcall function or is it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.