The method-parameters tag has no wiki summary.
2
votes
2answers
78 views
How to Convert Array to Params of Method?
I need to pass params (like: 'param1', 'param2', 'param3') to the method... but I have array of params (like: array('param1', 'param2', 'param3')). How to convert array to params?
function foo(array ...
2
votes
2answers
256 views
Is there a way to let arguments be var instead of val?
When debugging command line argument handling in Java I'm used to doing
args = new String[] { "some", "new", "arguments" };
(especially useful if have a filename as argument which you frequently ...
1
vote
3answers
50 views
Method receive List of more data types as parameter
I have a method and as a parameter I send List.
The method looks like this:
public static void setSanctionTypes(List<QueueSueDTO> items) {
for (QueueSueDTO dto : items) {
...
-2
votes
0answers
29 views
objective-c Uiimage Method parameter error
why works this:
[sampleView setInputImage:[UIImage imageNamed:@"test.jpg"]];
and not this:
[sampleView setInputImage:[[UIImage alloc] initWithCGImage:cgImage]];
or simply this:
...