Click here to Skip to main content
15,893,487 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
class B;

class A 
{
	public:
	int x, y;
	B b;
}

class B 
{
	func func1();
}

In func1, how to access variables x or y defined in class A?

/EDIT M - Looks like a repost[^]
Posted
Updated 28-Apr-10 13:20pm
v4

1 solution

Create an instance class A and access them. My C++ may be a little rusty, but that's the jist of it.

A a = new A();
a.x = ...
a.y = ...

Just because you have an instance of B in A doesn't mean you can automatically access anything in A from B. Personally I would probabably pass the values to func1

func1(int x, int y)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900