python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to use restricted mixin to an interface with implementation of that interface at same time in dart?
What I have:
Interface (InterfaceA) with a method that must be overridden.
Restricted to interface mixin (MixinB) with a method that I want to use without overriding.
Class (ClassC) with implementati...

Preckrasno
Votes: 0
Answers: 1
Unknown Generic in C#
I got the following Problem:
Is there a way to get all Classes that implement the IMatcher Interface in a List ?
The Generics T U cannot be set as Unknown. In Java we can use the "?", but in...

Daniel Fntic
Votes: 0
Answers: 3
golang struct composition using interface
I have a regester which can be registered using different services, i want to access the child method - search based on the service passed. Since the methods are common i want to use a single regester...
Shreyas G
Votes: 0
Answers: 0
Best way to share common code between two classes
I got two classes, Player and Enemy, and both share a few standard methods that I do not want to duplicate. The player and Enemy class already extend an another class, so making an abstraction class w...
MatrhWonder00
Votes: 0
Answers: 2