Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the shortcut for showing a function parameters in NetBeans?

Example:

void Sandwich(string ham, string bread, int cheese){
...do stuff...
};

When I type Sandwich(, I need to see what are the required parameters. How can I do that?

like image 833
user2468425 Avatar asked Sep 16 '15 14:09

user2468425


People also ask

How do I see parameters in Intellij?

View parameter hints in the editorOpen the Settings/Preferences dialog ( Ctrl+Alt+S ) and go to Editor | Inlay Hints | <required language>. Select Parameter hints from the list, make sure the Show parameter hints checkbox is selected, and then specify the context where you want parameter hints shown.

How do I show suggestions in NetBeans?

It is easy to enable Java hints in NetBeans. Select "Tools" from the title bar, then select "Options" from the drop-down menu. Choose the "Editor" option and then select the "Hints" tab.


1 Answers

For non-Mac, you can use Ctrl+P. For Mac, you can use Command + P

like image 100
Pham Van Vung Avatar answered Sep 23 '22 16:09

Pham Van Vung