简体   繁体   English

将指针传递给C ++中的类

[英]Passing Pointers to Classes in C++

I am trying to pass a pointer into my classes function, have it incremented, and have the variable retain it's value using pointers. 我试图将一个指针传递到我的类函数中,使其递增,并让该变量使用指针保留其值。 Heres my code, it doesnt increment. 这是我的代码,它不会递增。

#include "stdafx.h"
#include <iostream>

using namespace std;

class test 
{
public:

    int addTo();
    test(int * currentY);
private:

    int y;
};

test::test(int * currentY):
y(*currentY)
{
}

int test::addTo()
{
    y++;
    return 0;
}

int main ()
{
    for (;;)
    {
        int pointedAt = 1;
        int * number = &pointedAt;
        test t(number);
        t.addTo();
        cout <<*number;

        char f;
        cin >>f;
    }
}

This should do it: 应该这样做:

#include "stdafx.h"
#include <iostream>

using namespace std;

class test 
{
public:
    int addTo();
    test(int * currentY);

private:
    int *y;
};

test::test(int *currentY):
    y(currentY)
{}

int test::addTo()
{
    ++*y;
    return 0;
}

int main ()
{
    for (;;)
    {
        int pointedAt = 1;
        test t(&pointedAt);
        t.addTo();
        cout << pointedAt;
    }
}

You have to store a pointer to the integer, so it refers to the same address as the original variable. 您必须存储一个指向整数的指针,因此它指向与原始变量相同的地址。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM