Keyword to access/invoke members and constructors of a super class.
0
votes
2answers
36 views
Android Adapter getView Method: call super.getView or not?
I saw getView implementations that used convertView parameter directly:
if(convertView!=null)
...
return convertView
Another implementations call super.getView:
View view = super.getView( ...
0
votes
0answers
13 views
How to Using ASP.NET Session in SuperWebSocket
Is there have any functions to read ASP.NET Page.Session in SuperWebsocket 0.7
. I can get the SessionID but I can't read any thing which store in ASP.NET Page.Session.My IIS Server using SQLServer ...
0
votes
1answer
19 views
django admin super(type, obj)
Well, let me explain this.
I am working on a simple django admin project.
In the admin.py file, I have the following admin classes:
class A_Admin(admin.ModelAdmin):
#some stuff
class ...
0
votes
1answer
14 views
Base class method calling the Derived class method when using super. Very confused
This seems very confusing to me.
Could someone explain why this unknown magical things happening ?
class A(object):
def testA(self):
print "TestA of A"
self.testB()
def ...
0
votes
4answers
47 views
What happen when you call an override method using super and this keyword?
public class Superclass {
void method0(){
System.out.println("superclass");
}
}
public class Subclass extends Superclass{
void method0(){
...
0
votes
1answer
21 views
Why to call super class methods from android activity life cycle methods?
Why should we call super class onCreate() method from my activity's onCreate()?
What is the reason behind calling super class methods from every life cycle method? Could you please clarify me ?
-1
votes
2answers
60 views
java use of super() in inheritance
I'm making Construct classes that use Inheritance and I'm having a hard time with using the super(). I have the InterestCalculator class that is the parent of the CompoundInterest Class. I'm trying to ...
0
votes
2answers
81 views
Java constructor not called [closed]
I have a class called Queen, that is a subclass of Ant. The constructor for Queen takes in parameters, and passes those on to Ants constructor, plus additional specifics for a queen. Now, that is how ...
1
vote
2answers
61 views
Django - NullBooleanField won't retain False value from custom save() method
Newcomer to Django, so forgive me if I'm missing something obvious or doing something stupid here...
I have a Django model with a custom save() extension. Trimming the unrelated fields and methods, ...
3
votes
1answer
30 views
How to find source_location of the code executed by super?
class C1
def pr
puts "C1"
end
end
class C2 < C1
def pr
puts "C2"
super
puts self.method(:pr).source_location
end
end
c=C2.new
c.pr
In the program above is it possible to ...
-1
votes
5answers
45 views
Overriding specific lines from a parent class
I have a class Writer which has a method process(). A subclass, TextWriter, extends Writer.
I want to use the method process() of the parent class, except for the last line of the method, which I ...
0
votes
3answers
43 views
What is different between $this-> and parent:: in OOP PHP?
I code something like this to give you an example
This is using "$this->"
<?php
class A{
public function example(){
echo "A";
}
}
class B extends A{
public function ...
1
vote
2answers
42 views
What do superclass implementation of activity lifecycle in android do?
I have been learning android programming and i noticed that all activity life cycle methods have a super class that is implemented in the beginning.
The Android documentation also says, "Your ...
0
votes
3answers
55 views
Python: nested class with static method fails
What is wrong with the following code?
class A:
def A_M(self): pass
class B:
@staticmethod
def C(): super(B).A_M()
error (Python 2.7.3):
>>> a = A()
>>> ...
-4
votes
2answers
80 views
What's the different between super and super() in java?
like this:
public class class1 {
public void xxx(){
super.getXXX();
super().getXXX();
}
}
0
votes
4answers
65 views
Subclass not inheriting all methods
I have a class titled "Account" :
import java.util.Date;
public class Account {
public int id = 0; //Declare default id as 0
public double balance = 0; //Declare default balance as 0
...
0
votes
0answers
29 views
groovy generics: calling method on super class. Type erasure
I cannot understand why the following Groovy code won't compile
@groovy.transform.CompileStatic
class GenericTest<T extends String> extends TreeSet<T> {
public boolean add2(T key) {
...
0
votes
3answers
65 views
Python's super() for multiple inheritance inconsistency [closed]
I've two examples of multiple inheritance thats look like the same but i'm getting differents results order.
First Example from Joël:
class A(object):
def t(self):
print 'from A'
class ...
3
votes
3answers
97 views
Invoking Java keyword super
I had the following code on a test for a potential job recently.
class Point {
protected final int x, y;
private final String name;
Point(int x, int y) {
this.x = x;
...
0
votes
2answers
102 views
Using this and super in Java
I have the following code snippet that attempts to use this and super.
class SuperClass
{
public final int x=10;
public final String s="super";
public String notOverridden()
{
...
-6
votes
0answers
59 views
Write an abstract super class encapsulating a vacation [closed]
Write an abstract super class encapsulating a vacation: A vacation has two attributes: a budget and a destination. It has an abstract method returning how much the vacation is over or under budget. ...
-1
votes
2answers
65 views
The method onCreate(bundle) is undefined for the object type
Hi i am new to android dev, the following code gives error
1) The method onCreate(bundle) is undefined for the object type
2) The method onCreate(bundle) of type DisplayMessageActivity must be ...
2
votes
4answers
80 views
Java - understanding cloning
This code was presented in my Computer Science class today (accompanying several questions irrelevant to this post). This is not homework, just some issues I personally found with the code;
public ...
1
vote
2answers
73 views
Generics Java super
Whats wrong with listNum.add(num) in code below; (Reference- http://docs.oracle.com/javase/tutorial/java/generics/lowerBounded.html)
it gives compilation error as
The method add(capture#1-of ? super ...
1
vote
1answer
69 views
Scala overloaded constructors and super
I can't understand how to develop Scala code similar to the following on Java:
public abstract class A {
protected A() { ... }
protected A(int a) { ... }
}
public abstract class B {
...
0
votes
2answers
110 views
How do I add up the total cost for all values from the objects within ArrayList?
Print all boats
Color= blue Length= 22 Engine size= 60 Price= $12,800.00
Color= white Length= 18 Num of Sails= 1 Price= $20,000.00
Color= red Length= 42 Num of Sails= 3 Price= $48,000.00
Color= yellow ...
0
votes
1answer
63 views
How to use super in Pyglet in Window's subclass events?
I want to subclass pyglet.window.Window, but this code throw me exceptions for super in on_draw() and in on_mouse_pressed()
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import pyglet
class ...
0
votes
1answer
41 views
using super by defining class-inheritance in coffeescript gives me parse error when compiling
I am trying to define a class inherited from another base-class in coffeescript and I am getting parse-error when compiling. Exyctly : Parse error on line 6: Unexpected ','
My code looks like :
class ...
5
votes
2answers
106 views
Determine whether ActionScript method called using super
I have a method which logs a message each time it is called. I would like this log message to indicate whether the method was called directly or invoked using super in a child class.
class ...
4
votes
2answers
160 views
super() in constructor
I'm reading through some code. In the constructor it has super() but the class implements interface which of course doesn't have a constructor. So which super() it is referring to?
public class ...
1
vote
4answers
141 views
Using Super in a Derived Class Constructor When Base Class Requires Exceptions to be Caught
I'm trying to derive a class B to a new class C in Java. The base class constructor requires that unreported exceptions must be thrown or caught. But if I try to put super(..) inside a try/catch ...
1
vote
4answers
48 views
Ruby super value when argument is missing in subclass
class Bike
attr_reader :gears
def initialize(g = 5)
@gears = g
end
end
class AnotherBike < Bike
attr_reader :seats
def initialize(g, s = 2)
super(g)
@seats = s
end
...
0
votes
3answers
59 views
Difference between using `? super` in parameter and variable
I thought I'd figured out generics with super. But I must be completely wrong:
With this simple example:
class Animal{}
class Dog extends Animal{}
This code works fine because we are passing in a ...
0
votes
3answers
175 views
How to get superclass data member from subclass
I'm having trouble accessing a superclass data member from it's subclass.
So I have a superclass Store like this
public class Store {
protected ArrayList<Audiobooks> ab;
public ...
0
votes
1answer
76 views
Python super(Class, self).method vs super(Parent, self).method
This question is derive from the following question, let's say class B extends class A
class A(object):
def do_work(self):
print 123
class B(A):
def do_work(self):
...
0
votes
2answers
495 views
error: “Render and/or redirect were called multiple times in this action”
I want to redirect by the role_ids of the user:
if it's equal to 2, redirect to workers_path. if it's equal to 1, redirect to tasksadmins_path.
I defined the next things:
application controller:
...
0
votes
3answers
129 views
Android - which Activity methods require a super constructor?
In most Android apps, onCreate() is overridden with the first bit of code being super.onCreate(savedInstanceState) and I know this gathers the savedInstanceState Bundle and is neccessary for ...
3
votes
1answer
233 views
Which Android Fragment lifecycle methods require super
Currently (Android API 17), the only mention of super in the Android Reference on Fragment is casually via some code examples (unlike the Android Reference on Activity, which carefully notes where ...
0
votes
1answer
104 views
Inherit from Tkinter.Canvas - calling super leads to error
I wanted to ask a clever question about using Canvas as a container, but writing my example code I stumbled over something weird. Here is the code so far:
import Tkinter as tk
class ...
3
votes
2answers
73 views
Using super to make a pipeline?
I was thinking about how to use super to make a pipeline in python. I have a series of transformations I must do to a stream, and I thought that a good way to do it was something in the lines of:
...
0
votes
1answer
122 views
Need a bat file to super hide folder in flash?
I know I can super hide a folder by using the following codes in cmd:
attrib +S +H FolderName
But I need a .bat file to do this for me automatically when my flash is connedted to computer.
4
votes
2answers
125 views
Python's Multiple Inheritance: Picking which super() to call
In Python, how do I pick which Parent's method to call? Say I want to call the parent ASDF2's __init__ method. Seems like I have to specify ASDF1 in the super()..? And if I want to call ASDF3's ...
1
vote
1answer
236 views
Powermock - mocking a super method invocation
Here is my code -
import org.junit.Test;
import org.junit.runner.RunWith;
import org.powermock.modules.junit4.PowerMockRunner;
import org.powermock.core.classloader.annotations.*;
import static ...
-2
votes
3answers
245 views
Why can I not use “super” variable from a static context, even though “super” refers to the parent class and NOT a class instant, unlike “this”?
I'm talking java language.
Variable "this", when used inside a class, refers to the current instance of that class, which means you cannot use "this" inside a static method.
But "super", when used ...
0
votes
1answer
407 views
python, inheritance, super() method
I'm new to python, I have the code below which I just can't get to work:-
This is inheritance, I have a circle base class and I inherit this within a circle class (just single inheritance here).
I ...
0
votes
1answer
45 views
Python inheritance - referring to specific levels
I'm having trouble with Python (2.7) inheritance. I'm trying to refer from derived classes to parents and back, which is easy enough if you hard-code the classes, but that seems like an ugly approach ...
0
votes
3answers
63 views
ObjC: using “super” in conjunction with overriding
I have a class A and a class B which is a subclass of A. Both have the following methods:
-(void)anotherMethod{
// implementation of A or B
}
-(void)aMethod{
@try{
[super aMethod];
...
2
votes
3answers
196 views
Is type casting to super class and calling an overriden method acceptable? (Java)
It seems to work but is it concidered 'good' programming?
Here is an example to clarify:
public class foo{
foomethod(){do something};
}
public class foo1 extends foo{
@override ...
5
votes
3answers
137 views
java Can i create a string that is defined as null in one line?
I'd like to pass a String parameter as "null"
However, this is for the super method in a constructor - so i cannot do
String s = null;
super(s);
I cannot just do
super(null)
as this will result ...
1
vote
2answers
166 views
Adding in String and int to parent class with super.toString
Okay, so I have 4 different classes for my program, and I'm trying to add a new variable in one of my subclasses. I will show the code for all of the classes involved and then explain what exactly is ...




