无法修改struct中的数据

问题描述 投票:1回答:2

我正在尝试修改结构中的数据,似乎无法使其正常工作。如有必要,很乐意提供更多信息。

actTree返回二叉搜索树。

findNode返回该树上的节点。

Data()返回actData。

```
struct actData
{

    string year,award,winner,name,film;

};

```
void modifyActRecord() {
        cout << "Enter the name of the film for the movie data you would like to modify:" << endl;
        cin.ignore();
        string s;
        getline(cin, s);
        cout << "Which field would you like to modify?" << endl;
        cout << "Your choices are year, award, winner, name, film" 
        << endl;
    string f;
    getline(cin, f);
    if (f == "year") {
        cout << "What would you like to change it to?" << endl;
        string in;
        getline(cin, in);

        //line in question
        actTree->findNode(s)->Data().year = in;
}
I can access the code fine with:
cout << actTree->findNode(s)->Data().year;

but cannot modify it with:
actTree->findNode(s)->Data().year = in;
c++
2个回答
1
投票

只能为左值分配值。这意味着只允许左值位于表达式的左侧。在修改对象之前,您必须知道对象的位置。左值可以被认为是地址本身,尽管这可能会导致左值和指针之间的混淆。

int x;               // x is an lvalue
int* p;              // *p is an lvalue
int a[100];          // a[42] is an lvalue; equivalent to *(a+42)
                     // note: a itself is also an lvalue
struct S { int m; };
struct S s;          // s and s.m are lvalues
struct S* p2 = &s;   // p2->m is an lvalue; equivalent to (*p2).m
                     // note: p2 and *p2 are also lvalues

另一方面,rvalue是表达式的值。在上面的代码中,将x视为左值,将value of x视为右值。将*p视为左值,将value of *p视为右值。等等

int x, y;
int z = 2*x + 3*y;

在上面的例子中,xyz是左值。另一方面,表达式:2*x3*y,甚至(2*x + 3*y)都是rvalues。由于rvalue只是一个值,而不是值的位置,因此无法分配,就像你不能说2 * x = 4一样,因为它只是不正确。

所以,在你的例子中,data().year不是左值。所以它不能分配,只能使用。这就是原因,cout << actTree->findNode(s)->Data().year;工作正常,但actTree->findNode(s)->Data().year = in;没有,因为你可能正在返回actData。您需要返回一个可修改的左值,在您的情况下将是actData&

class Node
{
    actData m_data;
    public:
        actData Data()
        {
            return m_data;//returning value of m_data, not the address
        }
        /*Change above function to below function*/
        actData* Data()
        {
            return &m_data;//returning address here so that it can be modified
        }
};

做到这一点应该使actTree->findNode(s)->Data().year = in;工作。


0
投票

我认为@Mohitesh Kumar提供的答案是正确的,我不太了解lvaluervalue

我所知道的是,actTree->findNode(s)->Data()返回一个对象,而actTree->findNode(s)->Data().year是该对象的成员。因此,当您编写actTree->findNode(s)->Data().year = in;时,您将为返回对象的成员分配值,但不会修改actTree

你可以做的事情是:

someObject = actTree->findNode(s)->Data();
someObject.year = in;

即便如此,它也不会修改actTree。那么你可能应该为data创建一个setter方法并传入someObject的值

© www.soinside.com 2019 - 2024. All rights reserved.