About 422,000 results
Open links in new tab
  1. java - What is a Subclass - Stack Overflow

    A subclass in java, is a class that inherits from another class. Inheritance is a way for classes to add specialized behavior ontop of generalized behavior. This is often represented by the …

  2. CSS Classes & SubClasses - Stack Overflow

    Feb 18, 2009 · Is it possible, other than what I'm doing because it doesn't seem to work, to do this? I want to be able to have subclasses that are under a class to use the CSS specifically …

  3. python - Subclass in type hinting - Stack Overflow

    In other words, when C is the name of a class, using C to annotate an argument declares that the argument is an instance of C (or of a subclass of C), but using Type[C] as an argument …

  4. oop - How to create a subclass in C#? - Stack Overflow

    Nov 22, 2010 · How do I create a subclass in C# for ASP.NET using Visual Studio 2010?

  5. python - Understanding __init_subclass__ - Stack Overflow

    Jul 30, 2017 · Background __init_subclass__ was introduced as an alternative to creating metaclasses. Here is a 2-minute summary of PEP 487 in a talk by one of the core developers, …

  6. oop - Is there any technical difference between a subclass and an ...

    Is there any technical difference between a class which inherits from another class and a class which is a subclass of it? What's the difference between A and B in the following code: A) …

  7. Python generics and subclasses - Stack Overflow

    I'm trying to add type annotations to an existing package, and clearly I'm missing something important. I have an abstract superclass, and subclasses. The superclass should be generic, …

  8. python subclasscheck & subclasshook - Stack Overflow

    Nov 23, 2016 · The methods __subclasscheck__ and __subclasshook__ are used to determine if a class is regarded as subclass of another. However, their documentation is very limited, even …

  9. Explicit casting from super-class to sub-class - Stack Overflow

    If you want to use a method of the subclass, evaluate the possibility to add the method to the superclass (may be empty) and call from the subclasses getting the behaviour you want …

  10. Java - equals method in base class and in subclasses

    Oct 31, 2012 · I have a simple base class, which is later extended by many separate classes, which potentially introduce new fields, but not necessarily. I defined an equals method in the …