6
votes
10answers
531 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 n …
3
votes
3answers
196 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 …
3
votes
4answers
370 views
Having 2 variables with the same name in a class that extends another class in Java
Hello everyone.
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;
}
…
3
votes
3answers
695 views
Unable to make static reference to generic subclass (Java)
Hi, I have the following code:
class SuperClass {
public static String getName() { return "super"; }
}
class SubClass extends SuperClass {
public static String getName() …
3
votes
3answers
246 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<SomeObj …
3
votes
11answers
2k 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 kn …
2
votes
3answers
48 views
Mootools “Extends” plus “Implements”
Hi,
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 te …
1
vote
3answers
84 views
Java Subclassing, Possibly want to much???
I want something similar to protected, where only a class which implements the "protected" field and anything that subclasses it can access it. So, I want to be able to declare a v …
1
vote
0answers
68 views
Nhiberate - attributes, generics, abstract, concrete and interface
Hi,
I have an interface, an abstract implementation of interface with generics and a concrete implementation.
eg.
interface IProperty
[Class(Table = "Properties", Lazy = false) …
1
vote
3answers
171 views
What is the difference between extending a class and including it in PHP?
Can someone explain to me what the difference between
include_once 'classb.php'
class A
{
$a = new B
}
and
class A extends B
{
$a = new B
}
is?
What advantages/di …
1
vote
5answers
1k 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'] = 'valu …
0
votes
1answer
28 views
Custom Collection extends List<T> Add method
I want to create a custom collection and add my own custom Add method.
Scenario:
Teacher.Students.Add(Student s)
I want to put LINQ methods to save the teacher/student relations …
0
votes
1answer
50 views
CSS absolutely position element extends background
I have a absolutely position div that is overlapping a containers background due to it having a larger height. This div is sharing the container with a body div that's sitting happ …
0
votes
0answers
35 views
Extend HTML_BBCodeParser_Filter
I'm trying to add extra tags to the PEAR package BBCodeParser http://pear.php.net/package/HTML_BBCodeParser/docs/latest/li_HTML_BBCodeParser.html, to do this, I believe I need to p …
0
votes
3answers
86 views
Django extends template
Hi to all ,
i have simple django/python app and i got 1 page - create.html. So i want to extend this page to use index.html. Everything work (no errors) and when the page is loade …
