1
vote
5answers
121 views
Invoking an instance method without invoking constructor
Let's say I have the following class which I am not allowed to change:
public class C
{
public C() { CreateSideEffects(); }
public void M() { DoSomethingUseful(); }
}
an …
1
vote
3answers
72 views
Calling Method from Different Python File
As I'm currently learning Django / Python, I've not really been using the concept of Classes, yet. As far as I'm aware the method isn't static.. it's just a standard definition.
S …
1
vote
1answer
74 views
Using Explicit Interfaces to prevent accidental modification of properties in C#
I stumbled on a feature of C# method resolution that I didn't notice before. Namely, when I explicitly implement an interface that supports a setter, and the implicit interface onl …
1
vote
4answers
102 views
PHP Calling a function within a Class method?
I have been trying to figure out how to go about doing this but I am not quite sure how.
Here is an example of what I am trying to do:
class test {
public newTest(){
…
0
votes
3answers
32 views
Using the jQuery width() and height() methods
Can you use the .width() and .height() methods to increase the height like $('x').width('+=2px') or $('x').height('+=2px')?
I couldn't find any information about this on the jQuer …
1
vote
6answers
135 views
final methods are inlined?
Are Java final methods automatically inlined?
Many books says yes many books says no!!!
3
votes
1answer
85 views
Options for invoking methods dynamically in C#
I've seen quite a few questions related to how do I invoke a method like this and that. What I haven't found is a listing of the different options of how to invoke a method via ref …
0
votes
2answers
28 views
what has replaced UITableViewCell setText now that setText is deprecated?
iPhone OS 3.1.2, older program uses UITableViewCell.text, which is now deprecated. Does anyone know what the new Setter is supposed to be?
Thanks!
-2
votes
3answers
55 views
How to write Audit methods in Java?
Hi folks,
As my java application increases in complexity i want to write audit methods to make sure that i am doing the right thing.
How can i do it in java?
thx
4
votes
9answers
295 views
Flash games hack, score is 49700?? How to improve flash games security?
I have 2 flash games (written in as3). Both the highscore value being hacked. The normal range of each game score is not more than 5000 (normal users, will only get 2000 - 3000 poi …
6
votes
3answers
118 views
What is the difference between a delegate instance and a method pointer?
I thought that a delegate instance was interchangeable with a function instance.
Take the following code:
delegate int AddDelegate(int a, int b);
AddDelegate DelegateInstance;
…
5
votes
2answers
57 views
Perl Moose Method Modifiers: Call ‘around’ before ‘before’ and ‘after’
I'm using Moose and I need to wrap method calls in my project. It's important that my wrapping code be the most outer modifier. What I've done so far is put my method modifiers in …
6
votes
2answers
161 views
scala: ‘def foo = {1}’ vs ‘def foo {1}’
what is going on in each of these forms of defining foo?:
scala> def foo = {1}
foo: Int
scala> foo
res2: Int = 1
But:
scala> def foo {1}
foo: Unit
scala> foo
sca …
0
votes
4answers
106 views
How to store callback methods?
i am trying to store some method callbacks but referring to it will keep the bound object alive, so i tried to keep a weakref to method but that doesn't seems to be possible?
so
…
1
vote
3answers
63 views
java inheritance resolution in case of instance methods and variables
Hi
As per java, instance method resolution is based on runtime types of the arguments.
But while resolving instance variable it uses different approach as shown below.
…
