Правильно ли я добавляю пару значений в map?
cout << "Size: " << ((map <BYTE,ifunct*>)FuncBytes[sign]).size() << endl;
((map <BYTE,ifunct*>)FuncBytes[sign]).insert(pair<byte,ifunct*>(n,changMethod));
cout << "Size: " << ((map <BYTE,ifunct*>)FuncBytes[sign]).size() << endl;
Что до, что после insert-а size() возвращает нуль. То есть значения не добавились?
Ваше явное приведение типа (map <BYTE,ifunct*>)
создает временный объект типа map <BYTE,ifunct*>
. Каждое такое приведение типа создает индивидуальный временный объект, который автоматически уничтожается в конце выражения. Все действия, которые вы делаете, вы делаете именно с такими временными объектами. Добавление элемента тоже делается в один из этих временных объектов и, разумеется, исчезает без следа вместе с ним.
Объект FuncBytes[sign]
вашими действиями никак не затрагивается.
Пример для более полного понимания что происходит при явном приведении типов:
#include <iostream>
#include <vector>
class Bar;
class Foo{
public:
Foo():
m_id{makeId()},
m_data{}
{
std::cout << "Foo::Foo() self id: " << m_id << std::endl;
}
Foo(int data):
m_id{makeId()},
m_data{data}
{
std::cout << "Foo::Foo(int) self id:" << m_id << std::endl;
}
int getData() const{
return m_data;
}
void setData(int data){
m_data = data;
}
Foo(const Foo& other):
m_id{makeId()},
m_data{other.m_data}{
std::cout << "Foo::Foo(const Foo& other) self id: " << m_id << " other id: " << other.m_id << std::endl;
}
Foo& operator=(const Foo& other){
std::cout << "Foo::operator=(const Foo& other) self id: " << m_id << " other id: " << other.m_id << std::endl;
if (this != &other){
m_data = other.m_data;
}
return *this;
}
virtual ~Foo(){
std::cout << "Foo::~Foo() self id: " << m_id << std::endl;
}
private:
static int makeId(){
return m_idCounter++;
}
int m_id;
static int m_idCounter;
int m_data;
};
int Foo::m_idCounter = 0;
class Bar{
public:
Bar():
m_id{makeId()},
m_data{}
{
std::cout << "Bar::Bar() self id:" << m_id << std::endl;
}
Bar(int data):
m_id{makeId()},
m_data{data}
{
std::cout << "Bar::Bar(int) self id:" << m_id << std::endl;
}
Bar(const Bar& other):
m_id{makeId()},
m_data{other.m_data}
{
std::cout << "Bar::Bar(const Bar& other) self id:" << m_id << " other id:" << other.m_id << std::endl;
}
Bar& operator=(const Bar& other){
if (this != &other){
m_data = other.m_data;
}
std::cout << "Bar::oeprator=(const Bar& other) self id:" << m_id << " other id:" << other.m_id << std::endl;
return *this;
}
int getData() const{
return m_data;
}
void setData(int data){
m_data = data;
}
operator Foo() const{
return Foo(m_data);
}
virtual ~Bar(){
std::cout << "Bar::~Bar() self id:" << m_id << std::endl;
}
private:
static int makeId(){
return m_idCounter++;
}
int m_id;
static int m_idCounter;
int m_data;
};
int Bar::m_idCounter = 0;
using namespace std;
int main()
{
Foo f = 1;
Bar b = 2;
f = (Foo)b;
std::cout << "before create vector" << std::endl;
std::vector<Bar> bars;
bars.reserve(5);
std::cout << "before emplace back" << std::endl;
for (int i = 0; i < 5; i++){
bars.emplace_back((i+1)*10);
}
std::cout << "after emplace back" << std::endl;
for (auto& item: bars){
((Bar)item).setData(100);
std::cout << ((Bar)item).getData() << std::endl;
}
for (const auto& item: bars){
((Foo)item).setData(100);
std::cout << ((Foo)item).getData() << std::endl;
}
for (auto& item: bars){
((Bar&)item).setData(100);
std::cout << ((Bar&)item).getData() << std::endl;
}
return 0;
}
Вывод:
Foo::Foo(int) self id:0
Bar::Bar(int) self id:0
Foo::Foo(int) self id:1
Foo::operator=(const Foo& other) self id: 0 other id: 1
Foo::~Foo() self id: 1
before create vector
before emplace back
Bar::Bar(int) self id:1
Bar::Bar(int) self id:2
Bar::Bar(int) self id:3
Bar::Bar(int) self id:4
Bar::Bar(int) self id:5
after emplace back
Bar::Bar(const Bar& other) self id:6 other id:1
Bar::~Bar() self id:6
Bar::Bar(const Bar& other) self id:7 other id:1
10
Bar::~Bar() self id:7
Bar::Bar(const Bar& other) self id:8 other id:2
Bar::~Bar() self id:8
Bar::Bar(const Bar& other) self id:9 other id:2
20
Bar::~Bar() self id:9
Bar::Bar(const Bar& other) self id:10 other id:3
Bar::~Bar() self id:10
Bar::Bar(const Bar& other) self id:11 other id:3
30
Bar::~Bar() self id:11
Bar::Bar(const Bar& other) self id:12 other id:4
Bar::~Bar() self id:12
Bar::Bar(const Bar& other) self id:13 other id:4
40
Bar::~Bar() self id:13
Bar::Bar(const Bar& other) self id:14 other id:5
Bar::~Bar() self id:14
Bar::Bar(const Bar& other) self id:15 other id:5
50
Bar::~Bar() self id:15
Foo::Foo(int) self id:2
Foo::~Foo() self id: 2
Foo::Foo(int) self id:3
10
Foo::~Foo() self id: 3
Foo::Foo(int) self id:4
Foo::~Foo() self id: 4
Foo::Foo(int) self id:5
20
Foo::~Foo() self id: 5
Foo::Foo(int) self id:6
Foo::~Foo() self id: 6
Foo::Foo(int) self id:7
30
Foo::~Foo() self id: 7
Foo::Foo(int) self id:8
Foo::~Foo() self id: 8
Foo::Foo(int) self id:9
40
Foo::~Foo() self id: 9
Foo::Foo(int) self id:10
Foo::~Foo() self id: 10
Foo::Foo(int) self id:11
50
Foo::~Foo() self id: 11
100
100
100
100
100
Bar::~Bar() self id:1
Bar::~Bar() self id:2
Bar::~Bar() self id:3
Bar::~Bar() self id:4
Bar::~Bar() self id:5
Bar::~Bar() self id:0
Foo::~Foo() self id: 0
Кофе для программистов: как напиток влияет на продуктивность кодеров?
Рекламные вывески: как привлечь внимание и увеличить продажи
Стратегії та тренди в SMM - Технології, що формують майбутнє сьогодні
Выделенный сервер, что это, для чего нужен и какие характеристики важны?
Современные решения для бизнеса: как облачные и виртуальные технологии меняют рынок
Как сделать из multiline textbox двумерный массив?
Когда я изучал чужой код (win32), я наткнулся на такие строчки кода:
Вынес функцию в отдельный файлПишет недопустимое использование типа void
При использовании BEM нужно использовать характерное именование которое в scss достигается таким образом