0
votes
1answer
68 views
Declare default parameter circular reference without pointers?
Is there any way to declare these classes in a header file without indirection?
// Forwards declaration of B
class B;
class A
{
public:
// Default parameter referring to B. May return its …
0
votes
0answers
31 views
Nhibernate circular reference
I have a DomainObject with a property
List<DomainObject> Connections{get;set;}
So each object can be "connected" with others and I have to save this information in db to restore the entire …
0
votes
3answers
81 views
c# : Utility to find circular references / compile in correct order?
Hi there,
doers anyone know of a good utility or program to interrogate a solution or a directory for all projects and tell you where circular references are and possible compile in order..
I …
5
votes
2answers
158 views
How and when to appropriately use weakref in Python
I have some code where instances of classes have parent<->child references to each other, e.g.:
class Node(object):
def __init__(self):
self.parent = None
self.children = {}
def …
2
votes
2answers
116 views
How do I detect circular logic or recursion in a multi-levels references and dependencies.
I have a graph of multi-level dependecies like this, and I need to detect any circular reference in this graph.
A = B
B = C
C = [D, B]
D = [C, A]
Somebody have a problem like this?
Any …
2
votes
4answers
321 views
Circular reference in C++ without pointers
Hi,
Is there a way to define circular references without using pointers?
I need to have somthing like this:
struct A;
struct B {
A a;
};
struct A {
B b;
};
Thanks!
3
votes
1answer
87 views
Encountering self recursive assembly references in the .NET framework.
I was writing some C# code recursively walking the referenced assemblies of a base assembly, building up a directed acyclic graph of these references to do a topological sort. I'm doing this by means …
2
votes
8answers
442 views
How to avoid circular unit reference?
Imagine the following two classes of a chess game:
TChessBoard = class
private
FBoard : array [1..8, 1..8] of TChessPiece;
...
end;
TChessPiece = class abstract
public
procedure GetMoveTargets …
1
vote
1answer
87 views
Forward declaration - no admin page in django?
Hi SO,
This is probably a db design issue, but I couldn't figure out any better. Among several others, I have these models:
class User(models.Model):
name = models.CharField( max_length=40 )
# …
0
votes
1answer
199 views
django - circular import problem when executing a command
I'm developing a django application. Modules of importance to my problem are given below:
globals.py --> contains constants that are used throughout the application. SITE_NAME and SITE_DOMAIN are two …
0
votes
0answers
64 views
.net dottrace memory profiling usage questions - Filter Circular References
I use DotTrace as memory profiler. I wonder how it can filter circular incoming references?
As for the scenarios that I want to see who the hell holds reference to my object and keep it alive, those …
0
votes
1answer
98 views
Is there a way to detect and debug circular references when using StructureMap?
Lately I've been using a larger number of smaller objects, because they are simpler and easier to reuse. Most of the time there isn't any problem injecting these objects into one another using …
4
votes
3answers
477 views
I have a circular reference. How can I create a weak reference in Objective-C?
I have a an object of class Row that needs to release numerous objects of the class Block. Every Block currently has a property that retains an instance variable of class Row. Every Row contains an …
4
votes
6answers
363 views
What solutions are there for circular references?
When using reference counting, what are possible solutions/techniques to deal with circular references?
The most well-known solution is using weak references, however many articels about the subject …
0
votes
1answer
59 views
Has anyone ever used AOP to detect a circular reference?
I don't know, so that you could throw a CircularReferenceException?
