Vector of pair with const member The Next CEO of Stack OverflowVector of structs with const members?What is the difference between const int*, const int * const, and int const *?Appending a vector to a vectorWhy can I not call reserve on a vector of const elements?Unable to emplace_back instance of a class with const membersWhy is it not possible to instantiate pair with “non const” copy constructor while it is possible to instantiate one without?How can I use std::rotate to rotate an array of pairs whose first member is const?Well-formed program containing an ill-formed template member function?Error while trying to use const int std::arrayHow to return a static const int std::array from a method?C++ initializing const
How do I construct this japanese bowl?
Is it my responsibility to learn a new technology in my own time my employer wants to implement?
Where to find order of arguments for default functions
What is meant by a M next to a roman numeral?
Whats the best way to handle refactoring a big file?
How to make a variable always equal to the result of some calculations?
How do I go from 300 unfinished/half written blog posts, to published posts?
Why does GHC infer a monomorphic type here, even with MonomorphismRestriction disabled?
How to write papers efficiently when English isn't my first language?
Why doesn't a table tennis ball float on the surface? How do we calculate buoyancy here?
Anatomically Correct Mesopelagic Aves
How to safely derail a train during transit?
Is it a good idea to use COLUMN AS (left([Another_Column],(4)) instead of LEFT in the select?
When did Lisp start using symbols for arithmetic?
Opposite of a diet
Does it take more energy to get to Venus or to Mars?
How easy is it to start Magic from scratch?
The King's new dress
Removing read access from a file
Grabbing quick drinks
What is the difference between "behavior" and "behaviour"?
How do we know the LHC results are robust?
What do "high sea" and "carry" mean in this sentence?
How to count occurrences of text in a file?
Vector of pair with const member
The Next CEO of Stack OverflowVector of structs with const members?What is the difference between const int*, const int * const, and int const *?Appending a vector to a vectorWhy can I not call reserve on a vector of const elements?Unable to emplace_back instance of a class with const membersWhy is it not possible to instantiate pair with “non const” copy constructor while it is possible to instantiate one without?How can I use std::rotate to rotate an array of pairs whose first member is const?Well-formed program containing an ill-formed template member function?Error while trying to use const int std::arrayHow to return a static const int std::array from a method?C++ initializing const
As stated in this answer a std::vector<T> cannot contain const T, or classes with const-members. However, this is not the case when T = std::pair<const int, int>, as shown below. Why is this the case? How is std::pair special?
#include <utility>
#include <vector>
struct foo
const int first;
int second;
;
int main()
std::vector<std::pair<const int, int>> V1;
V1.resize(3); // This compiles
std::vector<foo> V2;
V2.resize(3); // This gives the error listed below
error: use of deleted function 'foo::foo()'
note: 'foo::foo()' is implicitly deleted because the default definition would be ill-formed:
c++ vector language-lawyer
add a comment |
As stated in this answer a std::vector<T> cannot contain const T, or classes with const-members. However, this is not the case when T = std::pair<const int, int>, as shown below. Why is this the case? How is std::pair special?
#include <utility>
#include <vector>
struct foo
const int first;
int second;
;
int main()
std::vector<std::pair<const int, int>> V1;
V1.resize(3); // This compiles
std::vector<foo> V2;
V2.resize(3); // This gives the error listed below
error: use of deleted function 'foo::foo()'
note: 'foo::foo()' is implicitly deleted because the default definition would be ill-formed:
c++ vector language-lawyer
2
You linked to a Q&A about C++03. Not saying it's necessarily irrelevant, but a lot has been tweaked in the C++ standard since.
– StoryTeller
Mar 18 at 9:52
add a comment |
As stated in this answer a std::vector<T> cannot contain const T, or classes with const-members. However, this is not the case when T = std::pair<const int, int>, as shown below. Why is this the case? How is std::pair special?
#include <utility>
#include <vector>
struct foo
const int first;
int second;
;
int main()
std::vector<std::pair<const int, int>> V1;
V1.resize(3); // This compiles
std::vector<foo> V2;
V2.resize(3); // This gives the error listed below
error: use of deleted function 'foo::foo()'
note: 'foo::foo()' is implicitly deleted because the default definition would be ill-formed:
c++ vector language-lawyer
As stated in this answer a std::vector<T> cannot contain const T, or classes with const-members. However, this is not the case when T = std::pair<const int, int>, as shown below. Why is this the case? How is std::pair special?
#include <utility>
#include <vector>
struct foo
const int first;
int second;
;
int main()
std::vector<std::pair<const int, int>> V1;
V1.resize(3); // This compiles
std::vector<foo> V2;
V2.resize(3); // This gives the error listed below
error: use of deleted function 'foo::foo()'
note: 'foo::foo()' is implicitly deleted because the default definition would be ill-formed:
c++ vector language-lawyer
c++ vector language-lawyer
edited Mar 18 at 9:54
Usman
1,135717
1,135717
asked Mar 18 at 9:46
JonasJonas
5,89982445
5,89982445
2
You linked to a Q&A about C++03. Not saying it's necessarily irrelevant, but a lot has been tweaked in the C++ standard since.
– StoryTeller
Mar 18 at 9:52
add a comment |
2
You linked to a Q&A about C++03. Not saying it's necessarily irrelevant, but a lot has been tweaked in the C++ standard since.
– StoryTeller
Mar 18 at 9:52
2
2
You linked to a Q&A about C++03. Not saying it's necessarily irrelevant, but a lot has been tweaked in the C++ standard since.
– StoryTeller
Mar 18 at 9:52
You linked to a Q&A about C++03. Not saying it's necessarily irrelevant, but a lot has been tweaked in the C++ standard since.
– StoryTeller
Mar 18 at 9:52
add a comment |
1 Answer
1
active
oldest
votes
You are mixing two things here. The error that you get is due to the implicitly deleted foo() default constructor that std::vector::resize(size_type count) invokes:
If the current size is less than
count,
1) additional default-inserted elements are appended
The std::pair template has a default constructor, this is why the call to V1.resize succeeds. If you provide one for foo as well, or allow its implicit generation by in class initialization, e.g.
struct foo
const int first = 42;
int second = 43;
;
then
std::vector<foo> V2;
V2.resize(3);
will happily compile. The operation that won't work out for both std::pair<const int, int> and foo is assignment. This won't compile:
V1[0] = std::pair<const int, int>(42, 43); // No way
V2[0] = 42, 43 ; // Also not ok, can't assign to const data member
which doesn't have anything to do with std::vector, but with the const-qualified data members in both cases.
1
Isn't it also related to that fact that in C++03 (the Q&A the OP quoted) the requirements were container-wide, while now they are more member function specific?
– StoryTeller
Mar 18 at 10:16
@StoryTeller Good question. Comparing the container requirements between two versions of the standard seems a bit above my pay grade, but I'll try to think about it :)
– lubgr
Mar 18 at 10:28
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55218505%2fvector-of-pair-with-const-member%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You are mixing two things here. The error that you get is due to the implicitly deleted foo() default constructor that std::vector::resize(size_type count) invokes:
If the current size is less than
count,
1) additional default-inserted elements are appended
The std::pair template has a default constructor, this is why the call to V1.resize succeeds. If you provide one for foo as well, or allow its implicit generation by in class initialization, e.g.
struct foo
const int first = 42;
int second = 43;
;
then
std::vector<foo> V2;
V2.resize(3);
will happily compile. The operation that won't work out for both std::pair<const int, int> and foo is assignment. This won't compile:
V1[0] = std::pair<const int, int>(42, 43); // No way
V2[0] = 42, 43 ; // Also not ok, can't assign to const data member
which doesn't have anything to do with std::vector, but with the const-qualified data members in both cases.
1
Isn't it also related to that fact that in C++03 (the Q&A the OP quoted) the requirements were container-wide, while now they are more member function specific?
– StoryTeller
Mar 18 at 10:16
@StoryTeller Good question. Comparing the container requirements between two versions of the standard seems a bit above my pay grade, but I'll try to think about it :)
– lubgr
Mar 18 at 10:28
add a comment |
You are mixing two things here. The error that you get is due to the implicitly deleted foo() default constructor that std::vector::resize(size_type count) invokes:
If the current size is less than
count,
1) additional default-inserted elements are appended
The std::pair template has a default constructor, this is why the call to V1.resize succeeds. If you provide one for foo as well, or allow its implicit generation by in class initialization, e.g.
struct foo
const int first = 42;
int second = 43;
;
then
std::vector<foo> V2;
V2.resize(3);
will happily compile. The operation that won't work out for both std::pair<const int, int> and foo is assignment. This won't compile:
V1[0] = std::pair<const int, int>(42, 43); // No way
V2[0] = 42, 43 ; // Also not ok, can't assign to const data member
which doesn't have anything to do with std::vector, but with the const-qualified data members in both cases.
1
Isn't it also related to that fact that in C++03 (the Q&A the OP quoted) the requirements were container-wide, while now they are more member function specific?
– StoryTeller
Mar 18 at 10:16
@StoryTeller Good question. Comparing the container requirements between two versions of the standard seems a bit above my pay grade, but I'll try to think about it :)
– lubgr
Mar 18 at 10:28
add a comment |
You are mixing two things here. The error that you get is due to the implicitly deleted foo() default constructor that std::vector::resize(size_type count) invokes:
If the current size is less than
count,
1) additional default-inserted elements are appended
The std::pair template has a default constructor, this is why the call to V1.resize succeeds. If you provide one for foo as well, or allow its implicit generation by in class initialization, e.g.
struct foo
const int first = 42;
int second = 43;
;
then
std::vector<foo> V2;
V2.resize(3);
will happily compile. The operation that won't work out for both std::pair<const int, int> and foo is assignment. This won't compile:
V1[0] = std::pair<const int, int>(42, 43); // No way
V2[0] = 42, 43 ; // Also not ok, can't assign to const data member
which doesn't have anything to do with std::vector, but with the const-qualified data members in both cases.
You are mixing two things here. The error that you get is due to the implicitly deleted foo() default constructor that std::vector::resize(size_type count) invokes:
If the current size is less than
count,
1) additional default-inserted elements are appended
The std::pair template has a default constructor, this is why the call to V1.resize succeeds. If you provide one for foo as well, or allow its implicit generation by in class initialization, e.g.
struct foo
const int first = 42;
int second = 43;
;
then
std::vector<foo> V2;
V2.resize(3);
will happily compile. The operation that won't work out for both std::pair<const int, int> and foo is assignment. This won't compile:
V1[0] = std::pair<const int, int>(42, 43); // No way
V2[0] = 42, 43 ; // Also not ok, can't assign to const data member
which doesn't have anything to do with std::vector, but with the const-qualified data members in both cases.
edited Mar 18 at 10:01
answered Mar 18 at 9:54
lubgrlubgr
14.4k32152
14.4k32152
1
Isn't it also related to that fact that in C++03 (the Q&A the OP quoted) the requirements were container-wide, while now they are more member function specific?
– StoryTeller
Mar 18 at 10:16
@StoryTeller Good question. Comparing the container requirements between two versions of the standard seems a bit above my pay grade, but I'll try to think about it :)
– lubgr
Mar 18 at 10:28
add a comment |
1
Isn't it also related to that fact that in C++03 (the Q&A the OP quoted) the requirements were container-wide, while now they are more member function specific?
– StoryTeller
Mar 18 at 10:16
@StoryTeller Good question. Comparing the container requirements between two versions of the standard seems a bit above my pay grade, but I'll try to think about it :)
– lubgr
Mar 18 at 10:28
1
1
Isn't it also related to that fact that in C++03 (the Q&A the OP quoted) the requirements were container-wide, while now they are more member function specific?
– StoryTeller
Mar 18 at 10:16
Isn't it also related to that fact that in C++03 (the Q&A the OP quoted) the requirements were container-wide, while now they are more member function specific?
– StoryTeller
Mar 18 at 10:16
@StoryTeller Good question. Comparing the container requirements between two versions of the standard seems a bit above my pay grade, but I'll try to think about it :)
– lubgr
Mar 18 at 10:28
@StoryTeller Good question. Comparing the container requirements between two versions of the standard seems a bit above my pay grade, but I'll try to think about it :)
– lubgr
Mar 18 at 10:28
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55218505%2fvector-of-pair-with-const-member%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
You linked to a Q&A about C++03. Not saying it's necessarily irrelevant, but a lot has been tweaked in the C++ standard since.
– StoryTeller
Mar 18 at 9:52