Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
5answers
4k views

Python: Circular (or cyclic) imports

What will happen if two modules import each other? To generalize the problem, what about the cyclic imports in Python.
15
votes
6answers
3k views

Circular References Cause Memory Leak?

I'm trying to run down a memory leak in a windows forms application. I'm looking now at a form which contains several embedded forms. What worries me is that the child forms, in their constructor, ...
13
votes
2answers
5k views

Circular import dependency in Python

Let's say I have the following directory structure: a\ __init__.py b\ __init__.py c\ __init__.py c_file.py d\ __init__.py ...
12
votes
6answers
1k views

Game Objects Talking To Each Other

What is a good way of dealing with objects and having them talk to each other? Up until now all my games hobby/student have been small so this problem was generally solved in a rather ugly way, which ...
11
votes
4answers
507 views

OO design and circular dependencies

I am currently struggling with a circular dependency problem when designing my classes. Ever since I read about the Anemic Domain Model (something I was doing all the time), I have really been ...
9
votes
1answer
4k views

Circular dependency in Python

I have two files, node.py and path.py, which define two classes, Node and Path, respectively. Up to today, the definition for Path referenced the Node object, and therefore I had done from node.py ...
9
votes
5answers
2k views

Python module dependency problem

Ok I have two modules, each containing a class, the problem is there classes refrence each other. Lets say for example I had a room module and a person module containing CRoom and CPerson. The CRoom ...
8
votes
2answers
98 views

circular generic type parameters

I have 2 generic classes, a BaseComponent Class, and a BaseManager class. They're both abstract and are intended to be made concrete. public abstract class BaseManager<T> where T : ...
8
votes
3answers
461 views

Is this a Circular dependency?

is this code a example of circular dependency? package expr; import sheet.Sheet public class AdressExpr implements Expr { private Address address; private Sheet sheet; public double ...
7
votes
0answers
94 views

Does the .NET CLR have a circular dependency? [closed]

Possible Duplicate: How did Microsoft create assemblies that have circular references? I was in the process of putting together a little PowerShell cmdlet that would give me a dependency ...
7
votes
1answer
222 views

Does F# support interdependent classes in separate files?

I'm working on IronJS, and one of our source files is getting very long. Right now, I'm trying to get .NET interop working. I'm adding the TryBinaryOperation method to the Undefined so that C# can ...
7
votes
3answers
321 views

Learning Haskell: Seemingly Circular Program - Please help explain

I'm currently going through the book "The Haskell Road to Logic, Math, and Programming" by Doets and Van Eijck. I've never been exposed to any functional programming language until this book, so keep ...
6
votes
3answers
69 views

Circular DLL dependencies in .NET

I have a DLL which provides an entry point to an ASP.MVC application. Let's call this Primary.DLL. In Primary.DLL, there are LINQ-to-SQL data context and other classes defined. Somewhere in ...
6
votes
3answers
139 views

Circular dependency between “controller” and “gui”

I am writing a complex GUI in Java with many components on several screens working on top of and interacting with a shared piece of logic and model. Clearly there are some circular dependencies ...
6
votes
3answers
202 views

Critique of immutable classes with circular references design, and better options

I have a factory class that creates objects with circular references. I'd like them to be immutable (in some sense of the word) too. So I use the following technique, using a closure of sorts: ...
6
votes
1answer
295 views

SQLAlchemy circular dependency - how to solve it?

I have two tables, News and Files: # unrelated columns removed class News(db.Model): id = db.Column(db.Integer, primary_key=True) file_id_logo = db.Column(db.Integer, ...
6
votes
4answers
253 views

Are circular references ever necessary?

I've inherited a Visual Studio Solution that contains numerous circular references between Projects. Is there ever a situation where this is remotely acceptable? Just trying to confirm my suspicion ...
6
votes
2answers
233 views

How does compiling circular dependencies work?

I've made the example in Java but I think (not tested) that it works in other (all?) languages. You have 2 files. First, M.java: public class MType { XType x; MType() {x = null;} } Second, ...
6
votes
4answers
409 views

Possible circular dependency issue with PHP application

I'm experiencing what I believe is a circular dependency issue with my PHP application. Please let me know if this is incorrect. Here is the situation: Two classes, LogManager and DBSession. ...
5
votes
1answer
270 views

ClassCircularityError thrown by ClassLoader.defineClass

I'm loading classes using a custom class loader. For the most part, everything works, but sometimes when I load particularly complex projects/libraries, I get a strange bug: Exception in thread ...
5
votes
5answers
651 views

Circular Dependency in C++

The facts: I have two predominant classes: Manager and Specialist. There are several different types of Specialists. Specialists often require the help of other Specialists in order to get their ...
5
votes
5answers
2k views

Circular dependency in java classes

I have the following classes. public class B { public A a; public B() { a= new A(); System.out.println("Creating B"); } } and public class A { public B b; ...
5
votes
7answers
306 views

Compiling C++ when two classes refer to one another

I am trying to write a simple wrapper around a connection pointer that will return it to the pool when the wrapper is destroyed, but it wont compile because the ConnectionPool and AutoConn need each ...
5
votes
3answers
667 views

Depedency injection: injecting partially-initialized objects

This question is about Unity Container but I guess it is applicable to any dependency container. I have two classes with circular dependencies: class FirstClass { [Dependency] public ...
5
votes
4answers
378 views

Organizing interfaces

I am just reading Agile Principles, Patterns and Practices in C# by R. Martin and M. Martin and they suggest in their book, to keep all your interfaces in a separate project, eg. Interfaces. As an ...
5
votes
8answers
2k views

Are circular references acceptable in database?

When are circular references acceptable in database? Theoretical and practical, any help is appreciated.
4
votes
2answers
322 views

Autofac property injection

I am in the process of changing my Asp.Net MVC3 project to use Autofac for service injection into my controllers. So far this has been pretty straightforward. My services all have a Telerik ...
4
votes
3answers
144 views

Static Circular Dependency in Java

for the following code: class A { public static int X; static { X = B.Y + 1;} } public class B { public static int Y = A.X + 1; static {} public static void main(String[] args) { ...
4
votes
6answers
125 views

Resolving circular depenency

I have two class projects in a Visual Studio solution. Due to the nature of th project both projects reference each other because they need each other's services (think of the "I scratch your back, ...
4
votes
4answers
731 views

Makefile circular dependency

New to the idea of makefiles. Here is my Makefile: .PHONY: all homework1 CFLAGS= -g -O0 -Wall -Werror -Wno-unused-function LDFLAGS= -lm all : homework1 homework1 : program.tab.o program.lex.o %.o : ...
4
votes
4answers
332 views

circular dependency(?) in C++

My initial suspicion was that there was a circular dependency in my code and went through http://stackoverflow.com/questions/625799/resolve-circular-dependencies-in-c. But this hasn't resolved my ...
4
votes
5answers
503 views

Is it possible to enable circular dependencies in Visual Studio at the assembly level? Would mutually dependent assemblies even be possible?

This probably sounds like a stupid question, but I'm going to give it a shot anyway. So in Visual Studio, you can't have two projects X and Y such that X references Y and Y references X. In general, ...
4
votes
3answers
317 views

Resolving Clojure circular dependencies

I'm working on some Clojure code that has some circular dependencies between different namespaces and I'm trying to work out the best way of resolving them. Basic issue is that I get a "No such var: ...
4
votes
2answers
903 views

Circular dependencies in StructureMap - can they be broken with property injection?

I've got the simplest kind of circular dependency in structuremap - class A relies on class B in its constructor, and class B relies on class A in its constructor. To break the dependency, I made ...
4
votes
7answers
884 views

Database Design: Circular dependency

Imagine the following database: Table 'companies' has fields id, name and flagship_product_id. Table 'products' have fields id, name and company_id. A company must have a flagship product (1:1 ...
4
votes
1answer
212 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 ...
4
votes
6answers
2k views

Resolve circular typedef dependency?

What is the best way to resolve the following circular dependency in typedef-ing these structs? Note the C language tag - I'm looking for a solution in standard gcc C. typedef struct { char* ...
3
votes
2answers
85 views

How to remove this circular dependency

I am currently trying to design a piece of screen-capture software. One design question I am having is I want to know if it is possible to eliminate the circular dependency between the PictureGetter ...
3
votes
1answer
84 views

Clean way to deal with circular references in EF?

Say I have this table structure: Client ----------- ClientId int not null (identity) CurrentDemographicId int null (FK to ...
3
votes
1answer
125 views

How to get rid of this circular dependency?

I am currently writing a few classes to deal with localization in a PHP web application. The classes are: Locale - Deals with setting and getting the user's locale, timezone, language. LocaleFormat ...
3
votes
1answer
128 views

How to avoid circular imports in Python?

I know the issue of circular imports in python has come up many times before and I have read these discussions. The comment that is made repeatedly in these discussions is that a circular import is a ...
3
votes
3answers
204 views

How to solve circular dependencies between JARs?

I am working on a big project with a lot of JARs and for sure no documentation exists!! :( To ensure that there is no memory leakage in the application, I've used JBoss Tattletale to check for ...
3
votes
8answers
186 views

How to remove circular dependency from two classes which are concrete types

I have two classes which are as follows : public class A{ private String id ; private SortedMap<String,B> answer = new TreeMap<String,B>(); private String text; } public class B{ private ...
3
votes
4answers
167 views

A C++ covariance/overriding/circularity problem

I am writing a backend of a compiler of a subset of Java. The backend writes C++ code. There is some hypothetical Java code, though, that I do not known how to translate to C++. An example problem is ...
3
votes
1answer
146 views

Python mutually dependent classes (circular dependencies)

I've searched a lot, but what I find is mainly examples of recursive programming in python. So here goes the question: How can I achieve this? class A: b = B() class B: a = A()
3
votes
2answers
199 views

templated circular inheritance

in this code, compiler complain about undefined MyClassB, which is understandable : class MyClassA; class MyClassB; template <class T> class BaseClass : public T { }; class MyClassA : public ...
3
votes
3answers
323 views

Complex circular dependency

what is the the best practice of solving circular dependency in C++? I could use the forward declaration, but then I get the pointer to incomplete class type is not allowed error. Does that mean that ...
3
votes
2answers
369 views

Circular-dependency best practice

I'm currently writing a web scraper which retrieves information from the internet. Simplified it looks like this. Data access project Objects to retrieve raw data Objects to parse the the raw data ...
3
votes
4answers
333 views

Circular dependency in Scala collections

Trait Traversable has methods such as toList, toMap, ToSeq. Given that List, Map, Seq are subclasses of Traversable, this creates a circular dependency, which is generally not a desirable design ...
3
votes
1answer
130 views

Why can't I change another modules variable in python?

I'm trying to allow a second module to modify the variables of the first in a circular import, but it doesn't seem to work. I have 2 questions: 1) Why doesn't this work / what is the reasoning for ...

1 2 3 4