Tagged Questions
The method-signature tag has no wiki summary.
12
votes
6answers
249 views
How should be my Service method signature?
I'm using a Service Layer, and until now I used a ServiceObject (which implements ArrayAccess, Iterator, Countable) but I'm wondering if it's a good ideas.
Would you do:
...
12
votes
12answers
292 views
Design question: pass the fields you use or pass the object?
I often see two conflicting strategies for method interfaces, loosely summarized as follows:
// Form 1: Pass in an object.
double calculateTaxesOwed(TaxForm f) { ... }
// Form 2: Pass in the fields ...
9
votes
1answer
219 views
Can I name a function signature?
I'm passing around a partially applied function. The full signature is:
import Data.Map as Map
-- Update the correct bin of the histogram based on the min value, bin width,
-- the histogram stored ...
9
votes
3answers
252 views
How can I make perltidy work with Method::Signatures?
I'm using Eclipse combined with EPIC to write my Perl code. I configured EPIC to use Perltidy with "-pbp" (perl best practices style) to format my code.
This doesn't work well when using ...
8
votes
3answers
73 views
Tool to look for incompatabilities in method signatures / fields
I would like to be able to compare two versions of a class / library to determine whether there have been any changes that might break code that calls it. For example consider some class Foo that has ...
7
votes
3answers
4k views
Is it possible to pass a method as an argument in Objective-C?
I have a method that varies by a single method call inside, and I'd like to pass the method/signature of the method that it varies by as an argument... is this possible in Objective C or is that too ...
5
votes
5answers
116 views
How can an interface include a method that references the concrete implementation type of the interface in its signature or return type?
Suppose I am designing something like the following interface:
public interface MyInterface{
public MyInterface method1();
public void method2(MyInterface mi);
}
However, there is the caveat ...
5
votes
4answers
613 views
C++ typedef member function signature syntax
I want to declare type definition for a member function signature. Global function typedefs look like this:
typedef int (function_signature)(int, int);
typedef int (*function_pointer) (int, int);
...
5
votes
3answers
136 views
Why are jQuery's callback arguments inconsistent?
A common pattern within jQuery is a method that takes a callback which is passed an element of an array and its index within that array. However, it seems completely random which argument comes ...
4
votes
5answers
78 views
Compute a Java functions signature
Is there a way to compute a Java-classes' methods' signature ? A Signature
like ([Ljava/lang/String;)V represents a function that takes a String[] as argument
and returns void.
Whats the rule to ...
4
votes
2answers
87 views
Java - Is it possible to output the stacktrace with method signatures?
Is it possible to output the current stacktrace with method signatures? I'm trying to debug some obfuscated code that has a ton of methods with the same name that just differ in arguments and return ...
4
votes
9answers
258 views
Array of functions with different signatures
I have this classes:
class Foo
{
...
};
class Foo1 : public Foo
{
...
};
...
class FooN : public Foo
{
...
};
Is it possible to have an array of functions with these kind of ...
4
votes
5answers
164 views
searching for c++ code parser to see all signatures
I'm looking for a c++ parser which is able to extract all the functions and methods with its signatures. Is there something like this?
I had a look at gccxml there I have the problem, that it is not ...
4
votes
2answers
96 views
Can I have a method argument typed “this class”?
I want to have an argument of type "this class" in an interface's method signature, so that any class, for example MyClass, implementing it will have that method with an argument of type ...
4
votes
5answers
520 views
Why varargs should be the last in method signature?
If I try to write a method like below
public void someStuff(Object ... args, String a )
I get this error
The variable argument type Object of the method someStuff must be the last parameter.
...
3
votes
4answers
463 views
howto return a array in a c++ method?
how can i return a array in a c++ method and how must i declare it?
int[] test(void); ??
3
votes
3answers
169 views
Interface implementation with method argument superclasses
As a practical example of the general question in the subject, I'd like to implement the containsAll method in the Set interface with
public boolean containsAll(Iterable<?> c) { /* ... */ }
I ...
3
votes
4answers
105 views
Best way to pass values to a function when there are many to send?
What is the best way to define a method signature when you have to pass many values to a function and some of these may be optional. And in future, May be I have to pass more variables or subtract ...
3
votes
1answer
143 views
Why aren't classes in .NET 4 covariant? [closed]
Possible Duplicate:
Why isn’t there generic variance for classes in C# 4.0?
As a rookie programmer I have a couple of questions about variance in .NET 4. Not so much about how it ...
3
votes
5answers
283 views
How Do I Handle Conflicts in Overloaded Method Signatures?
I have a feeling this question is a can of worms but I am going to ask anyway... :)
I have a method:
private MembershipUser GetUserFromReader(SqlDataReader reader)
And I want overload this method ...
2
votes
5answers
204 views
Definition of a method signature?
What is the correct definition of a method signature (or a signature of a method)?
On google, I find various definitions:
It is the combination of the method name and the parameter list
Does that ...
2
votes
1answer
62 views
How do you introspect MooseX::Method::Signatures methods to see what arguements they take?
I'm using MooseX::Declare and methods, which uses MooseX::Method::Signatures. Let's say I have a class 'foo' with a method 'bar', and I've implemented it like:
class foo {
method bar (Str $str, ...
2
votes
4answers
131 views
How to correctly design Java method - code critique about signature, exceptions, naming, etc
Possible duplicate(s) :
Method return values and exceptions
Exceptions vs Special return values
I'm a new Java user and I have stumbled upon a problem of correctly specifying a method. Basically, ...
2
votes
6answers
81 views
Use Get by Type or Get by ID
I have a method called GetObjectsRelatedToAType, e.g. GetCarsRelatedToDealership. Which approach is better from a web services or general method signature standpoint:
List<Cars> ...
2
votes
2answers
403 views
C++: inheriting overloaded non-virtual method and virtual method both with the same name causes problem
I am trying to inherit two equally named methods with different parameter lists to a derived class. One of them is virtual and overridden in the derived class, the other one is non-virtual. Doing so, ...
2
votes
3answers
179 views
2
votes
3answers
2k views
Java - getting the signature of a method in an interface, and the same for its Proxy implementation
I'm looking for a way to extract the essence of a signature in Java. The reason is that I want to use the signature as a unique key in a Map for my java.lang.reflect.Proxies.
With this code:
public ...
2
votes
2answers
351 views
Diff on Java class signatures?
Given two JAR files for the same Java library, is there a tool that will do a diff of the method signatures between the two jar files?
2
votes
2answers
123 views
When to use method overloads VS “request” object
What is the best "rule of thumb" to determine when to use method overloads and when to use a separate "request" class? for example:
MakePancakes(int size)
MakePancakes(int size, bool addBlueBerries)
...
1
vote
4answers
44 views
How to get method signatures with java reflection
My problem is as clear as you see in the title:) Thanks in advance
1
vote
1answer
34 views
How do I pass an aliased array reference in a MooseX::Method::Signatures method?
MooseX::Method::Signatures should be able to obtain an array reference as a parameter and use it as a normal array within the method, see Aliased references in Method::Signatures.
Using the code in ...
1
vote
1answer
31 views
Type encoding string for protocol method
I'm trying to get a signature -- either an NSMethodSignature object or at least the type encoding string -- for a method declared in a protocol.
Asking the Protocol object itself isn't possible, ...
1
vote
4answers
65 views
How to implement python method with signature like ([start], stop, [step])
since in python 3.X the build-id range()function returns no longer a list but a generator, some old code fails as I use range()to conviniently generate lists i need.
So I try to implement my own ...
1
vote
3answers
66 views
Method signature in C, passing pointer on static array
I have the following arrays:
char* mask[9];
int hSobelMask[9] = {
-1, -2, -1,
0, 0, 0,
1, 2, 1};
I want to give a pointer on this array to a method like this:
int H = ...
1
vote
1answer
55 views
Static member functions error; How to properly write the signature?
I am getting an error when trying to compile my code in g++ using the current signature:
cannot declare member function static void Foo::Bar(std::ostream&, const Foo::Node*) to have static ...
1
vote
0answers
80 views
RSA_verify Returns zero. with error Algorithm:mismatch
hi can any one tell whats wrong i am doing in this code...
I sign the Message using Java IBMFIPS compliant
the code to sign the message is
//Signs the hash of each chunk and adds it to the Message ...
1
vote
1answer
130 views
NetBeans magic-method signatures and autocomplete; changing default parameter names
Quick one:
I'm still a NetBeans amateur, however I've grown very fond of it very quickly. Anyways, running 7.0 for PHP development, and I'm wondering if its possible to change the method signatures ...
1
vote
1answer
254 views
calling COM method with Foo(…, [out] BSTR * value) from VBScript
Ist it possible to cal a COM method with the signature
HRESULT Foo(BSTR in, [out] BSTR * out1, [out] BSTR * out2)
from VBScript?
The following:
Dim a;
Dim b;
component.Foo "something", a, b
...
1
vote
1answer
163 views
Regex question about parsing method signature
I'm trying to parse a method signature that is in this format:
'function_name(foo=<str>, bar=<array>)'
From this, I want the name of the method, and each argument and it's type. ...
1
vote
4answers
334 views
Python magical main() signature like Perl 6
Does python have any way to easily and quickly make CLI utilities without lots of argument parsing boilerplate?
In perl6, the signature for the MAIN sub automagically parses command line arguments.
...
1
vote
2answers
136 views
How can I get the function sinatures from a jar file?
In Eclipse or NetBeans, when you "control + click" into a function, you can at least see its entire signature, even if it's in a jar file.
I am wonderging if it's possible to write a tool to pull out ...
1
vote
1answer
203 views
C# - Override <T> method signature with ClassName?
Is there a way to override an abstract class's method signature which uses <T> with a ClassName so I can pass an object by reference without recasting it?
For example, I have a bunch of Object ...
1
vote
2answers
649 views
Delegates and ParamArray - Workaround Suggestions?
Some predefined methods contain a ParamArray in their signature.
Delegates, however, cannot contain a ParamArray in their signature.
Question: Assume you wish to create a delegation mechanism for a ...
1
vote
4answers
216 views
private static <T> T cloneX(T x) - What does the <T> signify here?
In the above declaration, what is the <T> for?
I would like to know the difference between having <T> and not having it? How does it affect the code?
1
vote
2answers
150 views
c++ signatures, pointers
what's the difference between these signatures?
T * f(T & identifier);
T & f(T & identifier);
T f(T & identifier);
void f(T * identifier);
void f(T & identifier);
void f(T ...
1
vote
2answers
745 views
Is method signature in PHP a MUST or SHOULD?
I mean if it's called with $request which is not instance of sfWebRequest ,will it be fatal,or just a warning?
class jobActions extends sfActions
{
public function executeIndex(sfWebRequest ...
1
vote
3answers
3k views
Method signature declared as throws Exception; implemented as throws a subclass of Exception
I have the following interface declaration:
public interface SomeInterface {
void someMethod() throws Exception;
}
I use a third party to generate an implementation of this class (JavaCC - ...
1
vote
7answers
4k views
Can Java methods return type Enum?
I could be wrong but I'm guessing from this previous SO post that, since an enum in Java cannot be declared locally, that therefore it is therefore problematic for a method to return type Enum? I can ...
1
vote
5answers
1k views
How to get method signatures from a jar file?
I have a third-party jar file that comes with the javadocs for only part of the API. Is there a way to reverse engineer the jar file to obtain a complete listing of classes and methods?
1
vote
5answers
1k views
Why can't two methods be declared with the same signature even though their return types are different? [closed]
Duplicate: http://stackoverflow.com/questions/442026/function-overloading-by-return-type
Maybe this is a very silly question but I don't understand why I can't declare two methods that have the ...