Does refreshing in Eclipse also Clean the project?

前端 未结 2 447
再見小時候
再見小時候 2021-01-20 21:58

I hope the question isn\'t too vague but I was wondering if running \'Refresh\' also calls \'Clean\'.

Does running \'Clean\' run \'Refresh\' ?

相关标签:
2条回答
  • 2021-01-20 22:36

    No, it doesn't. Eclipse reads the files from the file system and buffers them. Refresh only tells eclipse to reread the files.

    0 讨论(0)
  • 2021-01-20 23:00

    Nope, it does not. Refresh reloads the last version of your project's files (like, if you modified something outside of eclipse, you need to refresh in eclipse to have the new modif show up). Clean on the other hand deletes all the compiled files and recompiles your project's sources

    0 讨论(0)
提交回复
热议问题