Top "Circular-dependency" questions

circular dependency is a relation between two or more modules which either directly or indirectly depend on each other to function properly.

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 …

python dependencies circular-dependency python-import
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 …

java circular-dependency
How to solve circular reference?

How do you solve circular reference problems like Class A has class B as one of its properties, while Class …

c# oop circular-dependency
Getting around circular reference in Google Spreadsheet

I have a google docs spreadsheet with two columns: A and B. Values of B are just values from A …

google-sheets circular-dependency
What is a circular dependency and how can I solve it?

Scenario I have a solution on which I have (more than) 2 projects. The first project has a project reference to …

c# .net vb.net visual-studio circular-dependency
Angular 4: Cannot instantiate cyclic dependency! InjectionToken_HTTP_INTERCEPTORS

I know, this question may sound duplicate and I have tried everything found on stackover flow unable to resolve this …

javascript angular circular-dependency
Any good advice about how to avoid import cycle in Go?

I'm working on a Go project for a month. The good thing is Go is really highly efficient. But after …

dependencies go circular-dependency
Objective C - Error: 'Expected a type'

I'm getting a very strange error on something that I would have thought to be simple. #import <Foundation/Foundation.…

objective-c import header-files forward-declaration circular-dependency
Circular Dependency Solution

Our current project has ran into a circular dependency issue. Our business logic assembly is using classes and static methods …

c# .net design-patterns architecture circular-dependency
AngularJS circular dependency

I'm making a logger service, to extend angular's $log service, by saving the errors (or debug if enabled) into an …

angularjs circular-dependency