parameter tag

13 questions


1 answers
396 views
0
I'd like to run a programmer's answer on IntelJ

I solved it using solution function in programmers and I want to try running it in intelligentj, but the main is the basic function, so I'm wondering how we can apply each other and run the parameters...

1 years ago

1 answers
146 views
0
Can I put the default value in the parameter in Java?

public MyParameterizedFunction(String param1, int param2) { this(param1, param2, false); } public MyParameterizedFunction(String param1, int param2, boolean param3) { //use all three parameters here...


1 answers
104 views
0
Can we selectively do parameters in Java?

Can we selectively give parameters in Java?What I'm saying is that I can give you parameters, I can give you an int, I can give you a string, so that it's processedIs it possible to do that?

2 years ago

1 answers
85 views
0
An error appears that the python class object does not have a parameter.

Call on the edit page.Create a py fileI put a simple class function in the file Next, I imported it from the console window, but the error message object() takes no parameters appears. If you write m ...

2 years ago

1 answers
134 views
0
I don't understand why I get double pointers with C binary tree insertion/deletion parameters

I think it's enough to receive a single pointer with the C binary tree insertion/deletion parameterIt's hard to understand why a book or a few blogs receive double pointers as parameters.The following...

2 years ago

1 answers
110 views
0
What is map(&:name) like?

I saw this code in RailsCast and I don't know what map(&:name) is like (&:name).def tag_names @tag_names || tags.map(&:name).join(' ')end


1 answers
117 views
0
[javascript] Question when taking function as a factor, foo()()

Hello. I have a question while studying Closer. The function below does not originally have foo()() and contains annotated parts. When I tried foo()(), it printed well. var color = 'red';function foo(...


1 answers
148 views
0
What is the parameter "String args[]" in the main function in Java?

When defining the main functionpublic void main(String[] args)You do it like this. HereWhat is String [args] and what is this for?


1 answers
128 views
0
What does (int argc, char *argv[]) do?

I usuallyint main()We share a roomIf you're working on C++ IDE,Make the main function int main(int argc, char *argv[]) automatically.The factor is when you call a function, but the main function is ex...


3 answers
111 views
0
In the Go language function parameter transfer

type Brand struct { Idx string `json:idx` Code int `json:code` Name string `json:name`}brands := make([]*Brand, 0)r.DB.Raw(query).Scan(&brands)DB data is added to the brands variable with the abov...

2 years ago
- 1 - »

© 2024 OneMinuteCode. All rights reserved.