'How can I change order of arguments in vscode?
Example, I created a method like that:
void method(String a, int b){
// do something
}
One day, how can I change order of argument like this if I had already use this method a lot in my project:
void method(int b, String a){
// do something
}
My IDE is vscode
Solution 1:[1]
You can overload in java (have multiple methods with the same name, so long as they accept different parameters)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | sss |
