Eclipse tutoria...login
Eclipse tutorial
author:php.cn  update time:2022-04-13 14:09:28

Eclipse content assistance



Use content assistance

In Eclipse, we can use code prompts to speed up development. The default is to automatically prompt after entering ".". Autohint for class members.

Set the configuration of automatic prompts in: window->Preferences->Java->Editor->Content Assist:

zdts

If we can enter the first letter of the class After pressing alt + /, an automatic prompt will appear.

ctrl

After entering ".", the automatic prompt will appear:

  • Class variable

  • Class method

  • Super class method

  • Other related classes

hltest

php.cn