The method-signature tag has no wiki summary.
0
votes
0answers
5 views
How to overwrite dbus method using signature
I made two method using dbus as below.
member input-sig output-sig callback-func
getstatus NULL "i" cb_1
getstatus NULL "uu" cb_2
Is it possible to overwrite the method ...
1
vote
3answers
63 views
Java Method Signature Throws Exception, Implementation does not [closed]
I am looking into some exception one method is throwing. The method looks like this:
public void someMethod() throws someCheckedException{
//doSomething statements
//but no statements actually ...
1
vote
1answer
63 views
Clojure: defmulti on different class types
Quick clojure question, I think this is mostly syntax related. How do I dispatch a multimethod based on specific type signatures of the arguments, for example:
(defn foo
([String a String b] ...
11
votes
2answers
248 views
What is “override-equivalence” and how is it related to @Override?
Reading the Javadoc for the @Override annotation, I came across the following rule:
If a method is annotated with this
annotation type compilers are required to generate an error message
...
8
votes
3answers
143 views
Delegate for any method type - C#
I want to have a class that will execute any external method, like this:
class CrazyClass
{
//other stuff
public AnyReturnType Execute(AnyKindOfMethod Method,
object[] ParametersForMethod)
...
0
votes
0answers
22 views
What is signature key in Authorization Authsub
i want to know what is signature String in authorization of Google Authsub .
i run this command
openssl req -x509 -nodes -days 365 -newkey rsa:1024 -sha1 -subj \
'/C=US/ST=CA/L=Mountain ...
0
votes
1answer
44 views
Why does this method signature work?
I just ran across a bit of code that has a method like this:
- (void) AddImage:(NSString *)imageURL: (UIImage *)image{
[imgCache setObject:image forKey:imageURL];
}
Normally I see methods that ...
0
votes
1answer
69 views
What type to use for an array of JSON objects?
I have a WCF service that receives a JSON payload.
For instance, a payload like this:
{ "a":"123", "b":"xyz" }
Works well with the following service method signature:
<OperationContract()>
...
1
vote
2answers
898 views
Sublime PHP method signature and description on autocomplete
I really like sublime but I have 1 major issue stopping me from migrating from Netbeans:
I need sublime autocomplete to show function description and method signature (i'm working with Yii framework ...
5
votes
3answers
123 views
Generics, Nullable, Type inference and function signature conflict
I've this code :
public async static Task<T?> RequestValue1<T>(Command requestCommand)
where T : struct
{
// Whatever
}
public async static Task<T> ...
1
vote
1answer
83 views
In C, what does it mean when I declare a variable following a function signature, before the function body? [duplicate]
Possible Duplicate:
Why are declarations put between func() and {}?
In C, what does it mean when I declare a variable following a function signature, before the function body?
Example:
...
1
vote
1answer
170 views
Equivalent Scala code of Java code not working (method signature not valid)
I was working with the JUNG2 library such that I can visualize a neural network system I have created.
First I was following the code samples from JUNG2 and I am using the following Java code:
...
7
votes
1answer
280 views
What are the digits in an ObjC method type encoding string?
I'm reading
Apple's article about Objective-C runtime type encoding strings
and some methods have numbers in their type strings.
What do the numbers in v12@0:4@8 mean?
0
votes
2answers
162 views
Add annotation while changing method signature in eclipse
I want to change the method signature in eclipse via refactoring. Is it possible to add a new parameter with annotation which refactoring?
i.e.:
I have a method:
public void foo(int a) ;
Now I want ...
0
votes
2answers
77 views
Choosing object binder in action signature
I have a custom model binder to get data from session, but I also would like to use the default binder from time to time.
Is it possible to choose model binder in action signature instead of using ...
4
votes
3answers
148 views
What is the difference between the generic signifier ' and the symbol ^ In F# method signatures
I understand the tick to signify a generic parameter, as in:
Seq.append : seq<'T> -> seq<'T> -> seq<'T>
but what does the caret signify, as in:
Seq.average : seq<^T> ...
0
votes
0answers
11 views
keyword new method
I'm trying to undrestand a project and i have 3 questions:
public class DbContextFactory : IDbContextFactory
{
private readonly DbContext c;
public DbContextFactory()
{
c = new ...
2
votes
4answers
256 views
C++ pure virtual function inheritance (same signature)
Why is this not compiling?
error C2660: 'Concrete::WriteLine' : function does not take 1 arguments
I know if i add the Line:
//using AbstractBase::WriteLine;
it works, but i dont understand why.
...
1
vote
3answers
392 views
jsf 1.2 custom function varargs signature
I have a custom JSF function and I need to create a custom function that has a variable length argument list:
the signature is:
public static boolean myFunction(String... args) {
...
}
how do I ...
1
vote
4answers
103 views
Method for executing methods with any signature
Is there any possibility to implement a method which to take as parameters a method name and the set of arguments for the method call, to execute the method and return the return value obtained from ...
3
votes
1answer
90 views
Function with multiple signatures, tries to call private subclass instead of the more generic function
Short story:
struct A{};
struct B:private A{};
void f(void *){}
void f(A*){}
int main(){
B* b;
f(b);
}
and GCC complains
error: ‘A’ is an inaccessible base of ‘B’
Long story:
To see if a ...
0
votes
1answer
530 views
MVC3 Optional parameters
This is a follow up to this:
What does MVC3 do with C# Optional Parameters?
I have an action with the following signature:
public ViewResult Show(int Id, PublishingErrorSummary pubErrors=null, ...
1
vote
2answers
117 views
How is my method call resolved?
Please definitively explain what the method resolution rules are in the following case. I have an idea, based on the behavior of the code, but would like clarification.
Based on "The const-ness of ...
2
votes
2answers
457 views
Why is varargs always the last parameter in a method signature?
Why does varargs have to be the last parameter in method signature?
I want to know the reason.
1
vote
4answers
2k views
How to get method signatures with Java reflection
How do I get method signatures with Java reflection?
EDIT:
I actually need the parameter NAMES not the types of a method.
1
vote
1answer
58 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 ...
3
votes
1answer
303 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
121 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 ...
4
votes
6answers
1k 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 ...
1
vote
3answers
267 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 = ...
2
votes
1answer
69 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, ...
3
votes
1answer
475 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 ...
4
votes
5answers
639 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 ...
5
votes
2answers
224 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 ...
0
votes
1answer
126 views
PHP : Declare function signatures in the classes' headings?
For Best Practices - In PHP 5.3+, can we, as for C++, declare function signares and put the bodies in the bottom of it ? If yes, how to make it ?
Example :
<?php
class TheDoor
{
public $args; ...
0
votes
2answers
56 views
Replacing template function foo(T*) by foo(T)
In my code, I have a function:
template<typename T>
void foo (T*); // make sure that 'foo()' is passed only pointers
Now in new implementation, I am passing also a smart pointer (something ...
7
votes
5answers
284 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 ...
1
vote
0answers
259 views
RSA_verify Returns zero. with error Algorithm:mismatch
Hi, can anyone tell what's 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 ...
5
votes
9answers
633 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 ...
-3
votes
1answer
86 views
Problem with Ruby Documentation
I am new with Ruby and I don't understand ruby Documentation.I cut a piece of ruby documentation. please explain completely this piece.
thanks
9
votes
1answer
235 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 ...
1
vote
1answer
253 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 ...
12
votes
6answers
326 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:
...
4
votes
4answers
377 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 ...
2
votes
4answers
237 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, ...
1
vote
1answer
688 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
...
2
votes
1answer
2k views
Question about Netty's Channel.write(Object) signature - Unclear documentation
The Netty library (written in Java) defines the following write method in the channel interface:
ChannelFuture write(Object message)
However, the Javadoc does not explain how this method is going ...
2
votes
6answers
105 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> ...
8
votes
3answers
87 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 ...
0
votes
1answer
101 views
Can Visual Studio track signature changes like Eclipse does
Imagine I have two C# files.
The first file, Class1.cs contains
namespace CrossReferenceCheckingTest
{
class Class1
{
public int doSomething(String s)
{
return ...

