본문 바로가기

카테고리380

[Tip of the Day] IntelliJ : Navigate to implementation Navigate to implementation To navigate to the implementations of an abstract method, position the caret at its usage or its name in the declaration and press Ctrl Alt B . 2023. 7. 20.
[Tip of the Day] IntelliJ : Select In Select In To quickly select the currently edited element (a class, file, method, or field) in another view, press Alt F1 or call Navigate | Select In. 2023. 7. 19.
[Tip of the Day] IntelliJ : Surround code fragments Surround code fragments You can quickly wrap a code block in useful constructs. Select it in the editor and press Ctrl Alt T (Code | Surround With). The list of available options or wrappers is context-sensitive and depends on the language. 2023. 7. 18.
[Tip of the Day] IntelliJ : The Rename refactoring The Rename refactoring You can easily rename your classes, methods, and variables with automatic correction of all places where they are used. Position the caret at the symbol you want to rename, and press Shift F6 (Refactor | Rename). Type the new name and press Enter . 2023. 7. 17.
[Tip of the Day] IntelliJ : Evaluate expression Evaluate expression You can execute expressions or reassign values for variables while your script is stopped by a breakpoint. The Evaluate Expression functionality helps you to obtain additional details about the program state or test various scenarios at runtime. • If the expression is present in the code, hold Alt (on Windows and Linux) or ⌥ (on macOS) and click it. If you want to evaluate a .. 2023. 7. 13.
[Tip of the Day] IntelliJ View Git blame annotations Git annotations show detailed information on the origin of each code line (right-click the gutter and select Annotate with Git Blame). Right-click an annotation and choose Show Diff to review the differences between the current and the previous version of the file. 2023. 7. 13.
[Tip of the Day] IntelliJ View Git blame annotations Git annotations show detailed information on the origin of each code line (right-click the gutter and select Annotate with Git Blame). Right-click an annotation and choose Show Diff to review the differences between the current and the previous version of the file. 2023. 7. 13.
[Tip of the Day] IntelliJ View Git blame annotations Git annotations show detailed information on the origin of each code line (right-click the gutter and select Annotate with Git Blame). Right-click an annotation and choose Show Diff to review the differences between the current and the previous version of the file. 2023. 7. 11.
[Tip of the Day] IntelliJ Expand code selection Press Ctrl W to expand code selection. Each time you press Ctrl W , the selection expands to other areas of code. For example, the selection expands from a method name to the expression calling this method, then to the whole statement, then to the containing block, and so on. 2023. 7. 7.
사람을 떠나게 만드는 사람들 한 조직의 '장' 이라는 자리는 절대 가벼운 자리가 아니다. 그 자리는 거저 얻어지는 자리가 아니라, 엄청난 노력의 결과일 것이다. 하지만 간혹 운좋게 그런 자리에 오른 사람들이 있다. 실력 보다는 처세와 모략으로 경쟁자를 따돌리고 그 자리에 오른 것이다. 이런 사람들의 특징은 전문 지식도 모자랄 뿐만 아니라, 기본적인 매너가 부족하고 조직을 이끌 능력도 부족하다는 것이다. 위에 아참을 해야 할 사람보다 자신에게 아부 하려는 사람이 많기 때문에 본격적으로 자신의 기분대로 행동하고, 생각없이 말을 내뱉는다. 이쯤 되면, 이 조직에서 능력있는 직원들의 이탈이 시작된다. 인재들이 떠나기 시작하는 것이다. 하지만 더 기가막힌 것은, 본인들은 모른다는 것이다. 왜 사람들이 떠나는 지를 모른다. '나 때는 ~' 이.. 2023. 7. 5.
[Tip of the Day] IntelliJ Camel case in code completion You can narrow down a list of code completion suggestions by using camel case prefixes. 2023. 7. 3.
[Tip of the day] IntelliJ Show usages You can view the list of all usages of a class, method or variable across the whole project, and quickly navigate to the selected item. Place the caret at a symbol and press Ctrl Alt F7 (Edit | Find Usages | Show Usages). To jump to a usage, select it from the list and press Enter . 특정 메서드나 객체 등에 커서가 위치한 상태에서 Ctrl + Alt + F7 을 클릭하면 해당 메서드나 객체등을 사용하고 있는 목록을 보여 준다. 다른 소스에서 해당 메서드나 객체등을.. 2023. 6. 28.