Tagged Questions
The extends tag has no wiki summary.
43
votes
2answers
3k views
Java Generics: What is PECS?
I came across PECS (short for Producer extends and Consumer super) while reading on Generics.
Can someone explain to me how to use PECS to resolve confusion between extends and super?
Thanks in ...
15
votes
14answers
18k views
Can I extend a class using more than 1 class in PHP?
If I have several classes with functions that I need but want to store separately for organisation, can I extend a class to have both?
i.e. class a extends b extends c
edit: I know how to extend ...
11
votes
10answers
1k views
Why avoid the final keyword?
In java, is there ever a case for allowing a non-abstract class to be extended?
It always seems to indicate bad code when there are class hierarchies. Do you agree, and why/ why not?
10
votes
3answers
1k views
Generics : List<? extends Animal> is same as List<Animal>?
I am just trying to understand the extends keyword in Java Generics.
List<? extends Animal> means we can stuff any object in the List which IS A Animal
then won't the following also mean the ...
7
votes
2answers
208 views
how to extend a class at runtime with reflection
Imagine that I have two Class A and B, B extends A, like
class B extends A
{
....
}
However, in my case, Class A is encrypted and can be only loaded by my ClassLoader at runtime (at compiling ...
6
votes
3answers
283 views
Java Inner Class extends Outer Class
There are some cases in Java where an inner class extends an outer class.
For example, java.awt.geom.Arc2D.Float is an inner class of java.awt.geom.Arc2D,
and also extends Arc2D.
(c.f. ...
6
votes
4answers
425 views
In Java type arguments, does <? extends E> mean strictly subtypes only? or would E also suffice?
In Java type arguments, does mean strictly subtypes only? or would E also suffice?
6
votes
2answers
242 views
Adding fields to a proxied class in Clojure
I'm using "proxy" to extend various Swing classes in a Clojure GUI application, generally with code that looks something like:
(def ^JPanel mypanel
(proxy [JPanel] []
(paintComponent ...
6
votes
6answers
779 views
Java: extending Object class
I'm writing (well, completing) an "extension" of Java which will help role programming.
I translate my code to Java code with javacc. My compilers add to every declared class some code. Here's an ...
5
votes
2answers
356 views
Extending both T and SomeInterface<T> in Java
I want to create a class that takes two parameters. One should be typed simply as T. The other should be typed as something that extends both T and SomeInterface<T>. When I attempt this with
...
5
votes
3answers
1k views
Mootools “Extends” plus “Implements”
I like to write my code slim and sexy (on the performance and memory side), I am using Mootools and was wondering if I was using it the correct way, also you can help me by telling me how to test my ...
4
votes
1answer
314 views
How do I mock a method inherited from an abstract class with EasyMock?
I'm struggling with EasyMock. I've written two small classes to illustrate my problem:
public abstract class A {
private AtomicReference<Integer> id = new ...
4
votes
3answers
1k views
Extending Array in Actionscript 3 (Flex)
I'm trying to make a variation on Array for a very specific purpose. When I have the following:
public class TileArray extends Array {
// Intentionally empty - I get the error regardless
}
Why ...
4
votes
3answers
2k views
extend base.html problem
I'm getting the following error:
Template error
In template /home/mo/python/django/templates/yoga/index.html, error at line 1
Caught TemplateDoesNotExist while rendering: base.html
1 {% extends ...
4
votes
4answers
134 views
Is it possible to simultaneously and generically subclass both a bounded generic class and a generic interface?
I'm trying to create a new class by subclassing another generic class (with a bound) and implementing a generic interface (without a bound):
public class Foo1<T extends Bar> {
...
}
public ...
4
votes
3answers
566 views
Django: Extends or Include?
My friend and I are having a small argument. In my current Django Project, I have created a file called menu.html which will contain a bunch of links configured and formatted into a list. Instead of ...
4
votes
5answers
9k views
Using parent variables in a extended class in PHP
I have 2 classes, main and extended. I need to use main vars in extended class.
<?php
class Main {
public $vars = array();
}
$main = new Main;
$main->vars['key'] = 'value';
class Extended ...
3
votes
2answers
41 views
How to create a constructor of an object from a extended class that contains as arguments two initial object?
I m new in Java and I have a simple problem:
I have the following class Point:
public class Point {
private int yAxis;
private int xAxis;
public Point (int x, int y)
{
...
3
votes
1answer
62 views
what exactly does a generic extending from a class mean?
what does this exactly mean?
public class Deck<T extends Card>
What does the T extends Card mean? Does this imply something about the class Card?
thanks!
3
votes
1answer
60 views
Can the ordinary android view extend with GLSurfaceView?
I am trying to use the GLSurfaceView to draw image in my android ordinary view.
But I heard that the a view can't extends other view.
Really, Can I do this?
3
votes
4answers
159 views
Java - using the 'super' keyword
Simple question. I made a class called Tester1 which extends another called Tester2. Tester2 contains a public string called 'ABC'.
Here is Tester1:
public class Tester1 extends Tester2
{
public ...
3
votes
3answers
121 views
What is the difference between using <? extends SomeAbstract> vs. SomeAbstract in java generics
I'm moving over to java from DotNet and this idea of extends is new.
I've seen some posts that fully explain using List<? extends SomeAbstract> vs. List<? super SomeAbstract> vs. ...
3
votes
2answers
115 views
Easy way to pass DB object into class that is extended numerous times
Consider the following PHP code:
<?php
require_once("myDBclass.php");
class a {
private $tablename;
private $column;
function __construct($tableName, $column) {
...
3
votes
5answers
77 views
Another Inheritance Question
From a quick Google search and a the wikipedia article on Multiple Inheritance, which quotes:
Multiple inheritance refers to a feature of some object-oriented programming languages in which a ...
3
votes
3answers
200 views
How to explain to someone that a data structure should not draw itself, explaining separation of concerns?
I have another programmer who I'm trying to explain why it is that a UI component should not also be a data-structure.
For instance say that you get a data-structure that contains a record-set from ...
3
votes
3answers
1k views
In PHP can you extend a class to the same name?
I'm trying to find out weather I can do this or not. I have a class called Template. and I want to extend that classes functionality in another file, but I don't want to change the name.
Do I declare ...
3
votes
4answers
1k views
Having 2 variables with the same name in a class that extends another class in Java
Following is a part of my code for a project:
public class Body extends Point{
public double x, y, mass;
public Body() {
x = y = mass = 0;
}
public Body(double x, double y, ...
3
votes
3answers
3k views
Unable to make static reference to generic subclass (Java)
I have the following code:
class SuperClass {
public static String getName() { return "super"; }
}
class SubClass extends SuperClass {
public static String getName() { return "sub"; }
}
...
3
votes
3answers
812 views
How do I parameterize an extended Collection
I've been trying to extend the ArrayList class without much success. I want to extend it, and be able to parameterize it.
So normally you have something like
ArrayList<SomeObject> list = new ...
2
votes
4answers
47 views
PHP Class / OOP : When to “reference” a class within a class vs extend a class?
When is it ideal to:
class USER {
// stuff about user
}
class PROFILE extends USER {
// stuff about user's profile
}
and when is it ideal to:
class USER {
$id;
$profile;
...
2
votes
4answers
77 views
Java generics compilation error - The method method(Class<capture#1-of ? extends Interface>) in the type <type> is not applicable for the arguments
Last Thursday someone at work showed me a compile error that I wasn't able to fix in a clean way and it has been bothering me ever since.
The problem is generics related and I've reconstructed a ...
2
votes
1answer
49 views
Does a base class with the metadata [Bindable] keyword automatically extends EventDispatcher?
I'm encountering something a bit bizarre, but maybe someone else came across this before.
I've got a base class, that doesn't extend anything. Let's call it...
public class FooBar {
//...
}
...
2
votes
2answers
37 views
Compare static addressing and import for extends/implements
Is there any difference between using
public ClassName extends some.package.Class implements another.package.Interface {}
and
import some.package.Class;
import another.package.Interface;
public ...
2
votes
2answers
70 views
Class inheritance problem in PHP
Hi stackOverflow Family :),
I have a question, and I didt find the answer elsewhere. I try to explain my problem:
I have a class, and if I create an other class from it, from that child class I ...
2
votes
5answers
304 views
Can you extend two classes in one class? [closed]
Possible Duplicate:
Can I extend a class using more than 1 class in PHP?
I have a class that has several child classes, however I am now adding another class which I also want to be a child ...
2
votes
4answers
170 views
Inheritance problem: calling parent construct function in subclass
I have a class named Display which extends class Layout, which extends class DOMDocument. I get: Fatal error: Call to a member function loadHTMLFile() on a non-object. Code as follows:
In index.php :
...
2
votes
5answers
363 views
How to convert my state machine to java?
Here is the normal way I would do things in C++:
class object
{
public:
enum
{
STATE_ACTIVE = 0,
STATE_INACTIVE,
OBJ_NUM_STATES,
}
int m_State;
...
2
votes
1answer
110 views
Construction “Class<? extends SomeType>” variable declaration in Objective-C
I am just curious about whether declaring a variable in a way known from Java is possible in Objective-C:
Class<?extends SomeType>
For example: I have a class called MyClass. It has a static ...
2
votes
1answer
2k views
extending PDO class
Below is the db connection class I came out with so far, but I am going to improve it by extending the PDO class itself,
<?php
class database
{
protected $connection = null;
#make a ...
2
votes
2answers
162 views
declare paramter subtype in Java interface, use subtypes in Java implementing methods
I want to declare a method in an interface where the parameter of the method defined in implementing classes can be a subtype of a specific java class for example:
interface Processor{
...
2
votes
4answers
97 views
Java - Extends issue
Hey guys, I'm having a hell of a time with an "extends" issue with a problem in a problem set I'm working on - I think I'm just having a block because it's written to be purposefully confusing. Here's ...
2
votes
1answer
72 views
Weird template include and extends behavior in Django
Gurus,
I googled so many times on this issue but I can barely find any useful information.
So assume that we have a base.html template as:
{% block test %}This is the base!{% endblock %}
And 2 ...
2
votes
3answers
225 views
Java extends beginner question
i have a java beginner question:
Parent.print() prints "hallo" in the console,
but also Child.print() prints "hallo".
I thought it has to print "child".
How can i solve this?
public class Parent {
...
2
votes
3answers
133 views
php classes extend
Hi I have a question regarding $this.
class foo {
function __construct(){
$this->foo = 'bar';
}
}
class bar extends foo {
function __construct() {
$this->bar = ...
2
votes
4answers
86 views
Simple class using php
hello I'm new to PHP and I need help to understand the basics of PHP class.
I want to have example of a class that uses private public protected and static.
and how do they work..
Thanks in ...
2
votes
2answers
185 views
PHP Classes Extend
I have two classes that work seperate from another, but they extend the same class. Is it possible to have them work the same instance of the extended class. I'm wanting the constructor of the ...
2
votes
2answers
5k views
Javascript extends class
What is the right/mest way to extend a javascript class so Class B inherits everything from the class A (class B extends A)?
2
votes
0answers
262 views
Nhiberate - attributes, generics, abstract, concrete and interface
I have an interface, an abstract implementation of interface with generics and a concrete implementation.
eg.
interface IProperty
[Class(Table = "Properties", Lazy = false)]
abstract ...
1
vote
3answers
56 views
android how to create my own Activity and extend it ?
i need to create a base class that extends activity which does some common tasks in my application and extend my activities from it,in the following form:
public BaseActivity extends Activity{....}
...
1
vote
1answer
50 views
Error in extending a class
I'm working on creating two classes for a sort of useless class project. The classes are Employee and Doctor, with Doctor extending Employee. Seems pretty simple, right? I thought so too.
Here's my ...