5
votes
8answers
362 views
Is it a bad idea to declare a final static method?
I understand that in this code:
class Foo {
public static void method() {
System.out.println("in Foo");
}
}
class Bar extends Foo {
public static void method() {
…
1
vote
3answers
100 views
Why isn’t this method chosen based on the runtime-type of its object?
Consider this:
class A {
int x =5;
}
class B extends A{
int x =6;
}
public class CovariantTest {
public A getObject() {
return new A();
}
/**
* @param …
0
votes
2answers
59 views
Is there a way to automaticly call all versions of an inherited method?
I'm writing a plug-in for a 3D modeling program. I have a custom class that wraps instances of elements in the 3D model, and in turn derives it's properties from the element it wraps. When the element …
1
vote
5answers
97 views
C# sample syntax question
Please, help me with to understand this piece of code:
protected Customer()
{
}
in the following class (Model class from sample WPF MVVM app):
public class Customer : …
0
votes
1answer
57 views
jQuery each method does not return value
$(document).ready(function() {
$('#commentForm').submit(function(){
return $('input[type=text], textarea').each(function(index){
if($(this).attr('value') == ""){
…
0
votes
4answers
166 views
How in C# to pass a name of the object as a parameter to function?
I have the code that change the state of boolean property on mouseclick, depending on name of the clicked object:
private void Grid_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
…
1
vote
2answers
37 views
Answering “Which method called me?” at the run-time in .NET? Or is CallStack data readable by the code?
Presume that there are methodA() , methodB() and methodC().
And methodC() is called at the run-time.
Is is possible to know methodC() is called from what method?
I was thinking if CallStack can be …
3
votes
3answers
42 views
Pass method, created with reflection, as Func parameter
Hello,
I've got a method (fyi, I'm using c#), accepting a parameter of type "Func", let's say it's defined as such:
MethodAcceptingFuncParam(Func<bool> thefunction);
I've defined the …
5
votes
5answers
144 views
Faking method attributes in PHP?
Is it possible to use the equivalent for .NET method attributes in PHP, or in some way simulate these?
Context
We have an in-house URL routing class that we like a lot. The way it works today is …
0
votes
1answer
32 views
Using Generic Methods with a WebService like WCF or ADO.NET Data Services
Is it possible to use generic methods with WCF or ADO.NET DS?
Or is it possible to create a generic WebService Repository with WCF or ADO.NET DS?
1
vote
4answers
99 views
running a method within another method. python
I am calling a method within another. and the error for this script i am getting is
NameError: name 'mnDialog' is not defined
Is there a reason for it? I think it has something to do with …
11
votes
7answers
190 views
Behaviour of final static method
I have been playing around with modifiers with static method and came across a weird behaviour.
As we know, static methods cannot be overridden, as they are associated with class rather than …
2
votes
4answers
104 views
private methods using .net reflection. why??
Hi
I used reflection many times before on public methods but never realized that private methods can be invoked too. See the link
I am still thinking why is that allowed in the first place?
Isn't …
1
vote
2answers
52 views
Dynamic method dispatch based on value of variable
Hi there,
Long switch statments are often frowned upon. The solution is to use polymorphism. However what if the thing I'm switching on is not a type code? What I would like to do is replace the …
1
vote
1answer
25 views
Axapta: Validate Access to return value from display method
The Dynamics AX 2009 Best Practice add-in is throwing the following error on a display method override.
"TwC: Validate access to return value from the display/edit method."
Here is my display …
