Hi I have a class called Session, which stores a vector of Page, like
vector<PageAlso each Page need's to know the Session to which it is
attached.
Thus I have, (the classes has many other things, I copied only the
portion i needed)
in Session.hpp
#include "Page.hpp"
class Session {
private:
std::vector<Page_pages;
};
while in Page.hpp
class Session;// forward decl
class Page{
private:
Session* _session;
public:
Page(Session* session) : _session(session) {}
};
Is it the best way to remove cyclic definition problem? Or any way I
can store a reference to Session rather than pointer to Session?
Thanks
abir 10 1712
toton wrote:
Hi I have a class called Session, which stores a vector of Page, like
vector<PageAlso each Page need's to know the Session to which it is
attached.
Thus I have, (the classes has many other things, I copied only the
portion i needed)
in Session.hpp
#include "Page.hpp"
class Session {
private:
std::vector<Page_pages;
};
while in Page.hpp
class Session;// forward decl
class Page{
private:
Session* _session;
public:
Page(Session* session) : _session(session) {}
};
Is it the best way to remove cyclic definition problem? Or any way I
can store a reference to Session rather than pointer to Session?
Whether to store a reference to Session or a pointer to Session is up
to you, and either would require using some kind of forward declaration,
which you have done already. Keep in mind that if you store a reference
in 'Page' you will have to initialise it during construction of the Page
object and you will not be able to change it during the Page's lifetime.
If that fits your design, prefer the reference. Otherwise, go with the
pointer.
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
toton wrote:
Hi I have a class called Session, which stores a vector of Page, like
vector<PageAlso each Page need's to know the Session to which it is
attached.
Thus I have, (the classes has many other things, I copied only the
portion i needed)
in Session.hpp
#include "Page.hpp"
class Session {
private:
std::vector<Page_pages;
};
while in Page.hpp
class Session;// forward decl
class Page{
private:
Session* _session;
public:
Page(Session* session) : _session(session) {}
};
Is it the best way to remove cyclic definition problem? Or any way I
can store a reference to Session rather than pointer to Session?
You could have a reference (it's simple enough to test -- did you try
it?). See this article for more on forward declarations and breaking
dependencies: http://www.gotw.ca/publications/mill04.htm
Cheers! --M
"mlimber" <ml*****@gmail.comwrote in message
news:11**********************@h48g2000cwc.googlegr oups.com
toton wrote:
>Hi I have a class called Session, which stores a vector of Page, like vector<PageAlso each Page need's to know the Session to which it is attached.
Thus I have, (the classes has many other things, I copied only the portion i needed) in Session.hpp
#include "Page.hpp" class Session { private: std::vector<Page_pages; };
while in Page.hpp class Session;// forward decl class Page{ private: Session* _session; public: Page(Session* session) : _session(session) {} }; Is it the best way to remove cyclic definition problem? Or any way I can store a reference to Session rather than pointer to Session?
You could have a reference (it's simple enough to test -- did you try
it?).
Use of a reference is a little tricky.
Page is stored in a vector and objects stored in standard containers must be
assignable. The compiler won't generate an assignment operator for Page,
because a reference cannot be re-seated.
You could write an assignment operator for Page to get the code to compile,
but any user-defined assignment operator likewise will not re-seat a
reference, so there could be some unexpected behaviour.
--
John Carson
John Carson wrote:
"mlimber" <ml*****@gmail.comwrote in message
news:11**********************@h48g2000cwc.googlegr oups.com
toton wrote:
Hi I have a class called Session, which stores a vector of Page, like
vector<PageAlso each Page need's to know the Session to which it is
attached.
Thus I have, (the classes has many other things, I copied only the
portion i needed)
in Session.hpp
#include "Page.hpp"
class Session {
private:
std::vector<Page_pages;
};
while in Page.hpp
class Session;// forward decl
class Page{
private:
Session* _session;
public:
Page(Session* session) : _session(session) {}
};
Is it the best way to remove cyclic definition problem? Or any way I
can store a reference to Session rather than pointer to Session?
You could have a reference (it's simple enough to test -- did you try
it?).
Use of a reference is a little tricky.
Page is stored in a vector and objects stored in standard containers must be
assignable. The compiler won't generate an assignment operator for Page,
because a reference cannot be re-seated.
You could write an assignment operator for Page to get the code to compile,
but any user-defined assignment operator likewise will not re-seat a
reference, so there could be some unexpected behaviour.
Right, and the same is true if one used a const pointer to a Session
object instead (const-correctness and all that). I took the OP's
question to be about whether a forward declaration would work with a
reference as well as a pointer, which, of course, it will.
Cheers! --M
Victor Bazarov wrote:
toton wrote:
Hi I have a class called Session, which stores a vector of Page, like
vector<PageAlso each Page need's to know the Session to which it is
attached.
Thus I have, (the classes has many other things, I copied only the
portion i needed)
in Session.hpp
#include "Page.hpp"
class Session {
private:
std::vector<Page_pages;
};
while in Page.hpp
class Session;// forward decl
class Page{
private:
Session* _session;
public:
Page(Session* session) : _session(session) {}
};
Is it the best way to remove cyclic definition problem? Or any way I
can store a reference to Session rather than pointer to Session?
Whether to store a reference to Session or a pointer to Session is up
to you, and either would require using some kind of forward declaration,
which you have done already. Keep in mind that if you store a reference
in 'Page' you will have to initialise it during construction of the Page
object and you will not be able to change it during the Page's lifetime.
If that fits your design, prefer the reference. Otherwise, go with the
pointer.
I prefer to store reference. Infact I want to do it in ctor, as you
have mentioned. I prefer not to change it. I also prefer to have a
constant reference.
like
class Page{
private:
const Session& _session;
};
but, at the same time, I prefer to pass it in the constructor as
reference, rather than pointer.
like Page(const Session& session) : _session(session) {}
Here some cyclic definition creating problem. I am not sure whether
this can be done, i.e only forward defination will allow me to do so or
not, or in my case problem is coming from some other cyclic
definition.
Thanks...
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
toton wrote:
[..]
I prefer to store reference. Infact I want to do it in ctor, as you
have mentioned. I prefer not to change it. I also prefer to have a
constant reference.
like
class Page{
private:
const Session& _session;
};
but, at the same time, I prefer to pass it in the constructor as
reference, rather than pointer.
like Page(const Session& session) : _session(session) {}
Here some cyclic definition creating problem. I am not sure whether
this can be done, i.e only forward defination will allow me to do so
or not, or in my case problem is coming from some other cyclic
definition.
Pull the _implementation_ of the constructor out of your 'Page' class
definition. Place it along with other Page's member functions in its
own implementation file (translation unit), and include both headers
in it (in any order) before defining all functions.
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
Victor Bazarov wrote:
toton wrote:
[..]
I prefer to store reference. Infact I want to do it in ctor, as you
have mentioned. I prefer not to change it. I also prefer to have a
constant reference.
like
class Page{
private:
const Session& _session;
};
but, at the same time, I prefer to pass it in the constructor as
reference, rather than pointer.
like Page(const Session& session) : _session(session) {}
Here some cyclic definition creating problem. I am not sure whether
this can be done, i.e only forward defination will allow me to do so
or not, or in my case problem is coming from some other cyclic
definition.
Pull the _implementation_ of the constructor out of your 'Page' class
definition. Place it along with other Page's member functions in its
own implementation file (translation unit), and include both headers
in it (in any order) before defining all functions.
Now cyclic definition problem is solved, but one more problem arises.
When I declare Session as pointer inside Page, and use a vector<Page>
inside session, it works fine.
However, when I declare Session as reference inside Page and use
vector<Pagein session, vector<Pageunable to find the assignment
operator for Page.
I hadn't defined the assignment operator for Page explicitly, ( I only
have a ctor, & virtual dtor, not defined copy ctor, assignment operator
or equality operator explicitly). It seems, that for the reference
case, Page class is not defining assignment operator automatically,
however it defines when I am passing pointer to Session in Page. and
thus vector<Pageis having problem inside Session class.
Do I need to define assignment operator explicitly in this case?
thanks
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
toton wrote:
[..]
Now cyclic definition problem is solved, but one more problem arises.
When I declare Session as pointer inside Page, and use a vector<Page>
inside session, it works fine.
However, when I declare Session as reference inside Page and use
vector<Pagein session, vector<Pageunable to find the assignment
operator for Page.
I hadn't defined the assignment operator for Page explicitly, ( I only
have a ctor, & virtual dtor, not defined copy ctor, assignment
operator or equality operator explicitly). It seems, that for the
reference case, Page class is not defining assignment operator
automatically, however it defines when I am passing pointer to
Session in Page. and thus vector<Pageis having problem inside
Session class.
Do I need to define assignment operator explicitly in this case?
thanks
Yes, assignment operators are very tricky when your class has a member
that is a reference. References cannot be "reseated", i.e. made to
refer to another object than the one with which they were initialised.
So, imagine you have
class A {};
class B {
A & a;
public:
B(A& ra) : a(ra) {}
};
The compiler does not know how to generate the assignment operator
for class 'B', since the assignment semantics for references are to
assign the objects and since you're keeping the reference in 'B', you
clearly don't want to affect the objects you refer to. You can write
your own assignment operator and forgo doing anything special about
the reference member (like this:
B& operator =(const B& other_b) {
// do nothing
return *this;
}
) which means that when assigned new value, a B object will retain
the reference, IOW its 'a' member will still refer to what the object
was constructed to refer to. Is that what you want? I don't know.
If you want "reseat-ability", use pointers.
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
Victor Bazarov wrote:
toton wrote:
[..]
Now cyclic definition problem is solved, but one more problem arises.
When I declare Session as pointer inside Page, and use a vector<Page>
inside session, it works fine.
However, when I declare Session as reference inside Page and use
vector<Pagein session, vector<Pageunable to find the assignment
operator for Page.
I hadn't defined the assignment operator for Page explicitly, ( I only
have a ctor, & virtual dtor, not defined copy ctor, assignment
operator or equality operator explicitly). It seems, that for the
reference case, Page class is not defining assignment operator
automatically, however it defines when I am passing pointer to
Session in Page. and thus vector<Pageis having problem inside
Session class.
Do I need to define assignment operator explicitly in this case?
thanks
Yes, assignment operators are very tricky when your class has a member
that is a reference. References cannot be "reseated", i.e. made to
refer to another object than the one with which they were initialised.
So, imagine you have
class A {};
class B {
A & a;
public:
B(A& ra) : a(ra) {}
};
The compiler does not know how to generate the assignment operator
for class 'B', since the assignment semantics for references are to
assign the objects and since you're keeping the reference in 'B', you
clearly don't want to affect the objects you refer to. You can write
your own assignment operator and forgo doing anything special about
the reference member (like this:
B& operator =(const B& other_b) {
// do nothing
return *this;
}
) which means that when assigned new value, a B object will retain
the reference, IOW its 'a' member will still refer to what the object
was constructed to refer to. Is that what you want? I don't know.
If you want "reseat-ability", use pointers.
In my situation, the reference of Session (or pointer, still not
decided! ) to a Page, and Page can not change the Session, it can only
refer to the Session it belongs. Thus Page knows the Session it belongs
at construction (in ctor) , and do not have a method like setSession.
So, I don't think it is "reseat-able", a Page is associated with a
Session throughout it's lifetime, and Session can remove a Page from
its evctor<Pageif the processing is done. Similarly, a Char knows The
Page it belongs, and can refer it, but itself can't change the Page it
belongs. However a Page can remove the a Char from it's deque<Char>.
That is why I thught reference is a better option.
If I define the assignment operator as you have mentioned, does it mean
that for two page
Page p1,p2; if I write p1 = p2, then p1 will not get modified
irrespective of what p2 is or will it be same object as p2 ?
Also, will the copy constructor work in its usual way? As I have a
vector<Pageinside the session, copy contsructor for Page is needed
for Session to work properly.
thanks.
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
toton wrote:
[..]
If I define the assignment operator as you have mentioned, does it
mean that for two page
Page p1,p2; if I write p1 = p2, then p1 will not get modified
irrespective of what p2 is or will it be same object as p2 ?
Modify anything you want, just don't touch the reference (in any way).
The assignment operator should perform all actions necessary to copy
data members. It's not possible to copy references (only copy objects
to which they refer), so usually you'd leave references alone. Thus,
the reference refers to the same object throughout its lifetime, no
matter whether the other members get changed along the way using the
assignment operator.
Also, will the copy constructor work in its usual way?
That should be fine.
As I have a
vector<Pageinside the session, copy contsructor for Page is needed
for Session to work properly.
Sure. Will not be a problem.
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Thomas Mailund |
last post by:
Hi group.
I have a problem with some C extensions I am working with and
hope that some of you can help. Basically, I am wrapping a a tree
structure from C where I have python methods for...
|
by: Brian Sabolik |
last post by:
I'm not sure if I've broken any Object Oriented rules or not, but ...
I have projects in 2 different solutions that need to use each other's
methods. Therefore I may have an "update" method in...
|
by: Dennis Lerche |
last post by:
Hi
I have a problem regarding cyclic dependency, yeahh I know bad
design. But right at this moment I can't see how it should be
redesigned to avoid this. The problem is that I just can't get it...
|
by: scl |
last post by:
two class with same name exist in different dynamic linked library:
a.so
class REGION() {
public:
....
~REGION() {}
}
b.so
|
by: free2cric |
last post by:
Hi,
how to detect head and tail in cyclic doubly link list ?
Thanks,
Cric
|
by: Matthias Kramm |
last post by:
Hi All,
I'm having a little bit of trouble using the "imp" module to
dynamically import modules. It seems that somehow cyclic references of
modules don't work.
I'm unable to get the following...
|
by: fc2004 |
last post by:
Hi,
Is there any tools that could report where cyclic header dependency
happens? this would be useful when working with a large project where
tens or hundreds of headers files may form complex...
|
by: Joe Peterson |
last post by:
I've been doing a lot of searching on the topic of one of Python's more
disturbing issues (at least to me): the fact that if a __del__ finalizer
is defined and a cyclic (circular) reference is...
|
by: pallav |
last post by:
I have to header files, circuit.h and latch.h that reference each
other and are causing a cyclic dependency.
latch.h file
#include "circuit.h"
typedef boost::shared_ptr<struct LatchLatchPtr;...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: Aliciasmith |
last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
|
by: giovanniandrean |
last post by:
The energy model is structured as follows and uses excel sheets to give input data:
1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
|
by: NeoPa |
last post by:
Hello everyone.
I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report).
I know it can be done by selecting :...
|
by: Teri B |
last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course.
0ne-to-many. One course many roles.
Then I created a report based on the Course form and...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
|
by: isladogs |
last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM).
In this month's session, Mike...
|
by: GKJR |
last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...
|
by: SueHopson |
last post by:
Hi All,
I'm trying to create a single code (run off a button that calls the Private Sub) for our parts list report that will allow the user to filter by either/both PartVendor and PartType. On...
| |