Tagged Questions
The method-declaration tag has no wiki summary.
22
votes
2answers
10k views
Java “params” in method signature?
In c# if you want a method to have an indeterminate number of parameters you can make the final parameter in the method signature a "params" which to the method looks like an array but allows anyone ...
11
votes
4answers
4k views
What do the plus and minus signs mean in Objective C next to a method?
I am very new in objective c and in xcode. I would like to know that what are the + and - signs next to a method definition mean.
- (void)loadPluginsAtPath:(NSString*)pluginPath errors:(NSArray ...
2
votes
3answers
143 views
Understanding this use of “(Private)” in @interface declaration
I've seen some code written this way:
@interface AViewController(Private)
I wanted to know if that (Private) means something when submitting to the App Store? What does it mean in general?
1
vote
2answers
2k views
C++/CLI : How to override Equal method of Object class
I am a newbie to C++/CLI and is having some problems trying to override the Equal method of the base Object class. I get the following compilation warning error for the following code. How should this ...
0
votes
1answer
1k views
Objective-C - How to implement an array of pointers in a method declaration
Ok, if you take a look at my two previous posts (Link #2 in particular), I would like to ask an additional question pertaining to the same code. In a method declaration, I am wanting to define one of ...