Wednesday 1 May 2013

IDE coding idea

Constants...Everyone know that using some static Constant class is common practice in any product. So we can integrate such functionality directly in IDE. For example:

1. enter for( int i=0;i<42;i++){....}
2. when you put cursor on number 42 IDE automaticaly propose you to setup this constant in Constant file. You enter name for constant and hit enter. Gotcha
3. for( int i=0;i<cSenseOfLife;i++){...}

But thats not all

IDE have special mode where all constants from Constant file are showing directly in code. So you can edit them here without a need to open Constant file.

No comments:

Post a Comment