Tagged Questions
0
votes
3answers
42 views
Fatal allowed memory size exceeded when using class extend
When I use a lot of class extends, I get this error:
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 65488 bytes) in C:\Web\private\bootstrap.php on line 5 (I made ...
0
votes
1answer
84 views
Extending get_object_or_404 to use select_related
What i am trying to do is to define a custom method that uses django.shortcuts.get_object_or_404 and select_related. I have the method defined as follows:
models.py
class Sample(models.Model):
...
0
votes
1answer
110 views
How can I use a method in a different class?
I'm working on a project, and I need some help here. I have an AnimalWorld that extends World, and an Elephant class that extends Turtle. In my Elephant's act() method, I want to use a method ...
1
vote
3answers
105 views
Why would you extend a class rather than just adding a new method to the original class?
I finally had my Ah-ha moment when it came to classes in OOP. I've been struggling to get my mind around the idea. Now that I'm starting to get it I was wondering what the purpose of extending a class ...
2
votes
3answers
194 views
C++ - extending a data type
Is there a way to extend a data type in C++, like you can in JavaScript?
I would imagine this is kind of like this:
char data[]="hello there";
char& capitalize(char&)
{
//Capitalize the ...
0
votes
1answer
79 views
Extending a method in rails
In the application I'm creating I use a gem. This gem has a Module with a method that is called by the gem when something changes. What I need to do is extend the functionality of this method. I ...
0
votes
2answers
73 views
Sharing a field method with class
I have a class with objects
Now i want to call a function from Box and Toy object from outside of the Container class
class Container
{
Box box1 = new Box();
Toy toy1 = new Toy();
public ...
0
votes
2answers
77 views
Working with extended classes in PHP
I have 2 classes looking like this:
class db {
protected $db;
function __construct() {
$this->connect();
}
protected function connect() {
$this->db = new ...
1
vote
1answer
259 views
Extend class methods in PHP
I am doing a custom CMS and I have built my base content class like this:
class Content
{
public $title;
public $description;
public $id;
static function save()
{
$q = "[INSERT THE ...
0
votes
1answer
642 views
cakephp: extend a model class to override pagination methods
i spent the last 2 days looking for a solution for a problem with pagination in cakephp.
In short, i need diferent pagination methods for the same model. The index action will use the default method ...
2
votes
6answers
2k views
How to use a method from a class in another class without extending
Sorry if my question sounds weird lol I'll try to explain.
I have 4 classes: Karakter, Karakters, Orc, Human. Orc and Human both extend Karakter. Karakters is an ArrayList with Karakter in it.
I ...