[IntelliJ] 변수명 한 번에 수정하기 :: Rename reference 리팩토링

7156 단어 SpringSpring
CardResultSet card1 = new CardResultSet();
card1.setCardCode("01");
card1.setCardName("카카오페이(KB국민카드)");
card1.setDcCls("01");
card1.setDcVal(5.0);
card1.setDiscountUnit("%");
card1.setPromText("즉시할인");
card1.setSalePrice(37050);

return card1;

소스가 위와 같을 때,
변수명을 card1 -> card 이렇게 한 번에 수정하려면,

  1. 객체의 변수명 먼저 수정 card1 -> card
CardResultSet card = new CardResultSet(); // card1 -> card
card1.setCardCode("01");
card1.setCardName("카카오페이(KB국민카드)");
card1.setDcCls("01");
card1.setDcVal(5.0);
card1.setDiscountUnit("%");
card1.setPromText("즉시할인");
card1.setSalePrice(37050);

return card1;
  1. Rename reference

  • 빨간색 컴파일 에러가 발생한 변수명에 커서를 두고 command + 1 (More Actions) -> Rename reference

결과

CardResultSet card = new CardResultSet(); // card1 -> card
card.setCardCode("01");
card.setCardName("카카오페이(KB국민카드)");
card.setDcCls("01");
card.setDcVal(5.0);
card.setDiscountUnit("%");
card.setPromText("즉시할인");
card.setSalePrice(37050);

return card;

위와 같이 한 번에 수정된다.

좋은 웹페이지 즐겨찾기