๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ

Lang/โ˜• Java

โ˜• Java * Utility classes should not have public constructors (java:S1118)

static์œผ๋กœ ๊ตฌ์„ฑ ๋œ ํด๋ž˜์Šค๋ฅผ ๋ฐฐ์› ๋‹ค.

์‹ค์Šตํ•ด๋ณด๋˜ ์ค‘ ์•ˆ๋‚ด๋ฌธ๊ตฌ๊ฐ€ ๋–ณ๋‹ค.

 

Utility classes should not have public constructors (java:S1118)

Utility classes, which are collections of static members, are not meant to be instantiated. 

Even abstract utility classes, which can be extended, should not have public constructors. 

Java adds an implicit public constructor to every class which does not define at least one explicitly. 

Hence, at least one non-public constructor should be defined.

 

๐Ÿ™„ ๋ฌด์Šจ ๋ง์ธ๊ณ  ํ•˜๋‹ˆ

static members(์ •์  ๋ฉค๋ฒ„๋“ค)๋กœ ๊ตฌ์„ฑ ๋œ ์œ ํ‹ธ ํด๋ž˜์Šค๋Š” ์ธ์Šคํ„ด์Šคํ™” ๋˜์ง€ ์•Š๋Š”๋‹ค.

extended(์ƒ์†, ํ™•์žฅ)์ด ๊ฐ€๋Šฅํ•œ abstract utility classes(์ถ”์ƒ ์œ ํ‹ธ ํด๋ž˜์Šค๋“ค)๋ผ๋„ publicํ•œ constructors(์ƒ์„ฑ์ž)๋ฅผ ๊ฐ€์ง€์ง€ ์•Š์•„์•ผ ํ•œ๋‹ค.

์ž๋ฐ”๋Š” ์•”๋ฌต์ ์œผ๋กœ ์ ์–ด๋„ ํ•˜๋‚˜์˜ ์ƒ์„ฑ์ž๋ฅผ ๋ช…์‹œ์ ์œผ๋กœ ์ •์˜ํ•˜์ง€ ์•Š์€ ๋ชจ๋“  ํด๋ž˜์Šค์— public ์ƒ์„ฑ์ž๋ฅผ ์ถ”๊ฐ€ํ•œ๋‹ค.

๋”ฐ๋ผ์„œ, ์ ์–ด๋„ ํ•˜๋‚˜์˜ non-public ์ƒ์„ฑ์ž๋ฅผ ์ •์˜ํ•ด์•ผ ํ•œ๋‹ค.

 

๊ทธ๋Ÿฌ๋‹ˆ๊นŒ static ๋ฉค๋ฒ„๋“ค๋กœ ๊ตฌ์„ฑ๋œ ํด๋ž˜์Šค๋ฅผ ์ •์˜ ํ•  ๋•Œ๋Š” non-publicํ•œ ์ƒ์„ฑ์ž๋ฅผ ํ•˜๋‚˜ ๋ช…์‹œ์ ์œผ๋กœ ์ •์˜ํ•˜๋ผ๋Š” ์†Œ๋ฆฌ๋‹ค!

 

 

์˜ˆ์‹œ๋ฅผ ๋ณด์ž.

Noncompliant Code Example

class StringUtils { // Noncompliant

  public static String concatenate(String s1, String s2) {
    return s1 + s2;
  }

}

 

Compliant Solution

์œ„ ์ฝ”๋“œ์—์„œ StringUtils์— ๋Œ€ํ•œ ์ƒ์„ฑ์ž๋ฅผ ์ถ”๊ฐ€ํ•ด์ค€๋‹ค! ๋‹จ non-public ํ•˜๋„๋ก!

private StringUtils() {
    throw new IllegalStateException("Utility class");
}
class StringUtils { // Compliant

  private StringUtils() {
    throw new IllegalStateException("Utility class");
  }

  public static String concatenate(String s1, String s2) {
    return s1 + s2;
  }

}

 

 

๋” ์•Œ์•„๋ณด๊ธฐ

Q1. ์ •์˜ํ•˜์ง€ ์•Š์œผ๋ฉด ์•ˆ๋˜๋‚˜์š”?

A. ๋ฌธ์ œ๋Š” ์—†๋‹ค. ์ž˜ ๋Œ์•„๊ฐ€๋”๋ผ.

 

Q2. ๊ทธ๋Ÿผ ๋ฌด์Šจ ์ฐจ์ด๊ฐ€ ์žˆ๋‚˜์š”?

A. static ๋ฉค๋ฒ„๋“ค๋กœ ๊ตฌ์„ฑ๋œ ํด๋ž˜์Šค ๊ฐ์ฒด๋ฅผ ์ƒ์„ฑํ•˜๋Š” ์ฝ”๋“œ๋ฅผ ๋„ฃ์—ˆ์„ ๋•Œ ์ปดํŒŒ์ผ ์—๋Ÿฌ๋ฅผ ์ผ์œผํ‚จ๋‹ค.

 

 

๐Ÿค” ์ค‘์š”๋„๊ฐ€ Major ์ด๋ผ๊ณ  ๋œจ๋Š” ๊ฑธ ๋ณด์•„์„œ๋Š” ์ง€์ผœ์ฃผ๋Š” ํŽธ์ด ์ข‹์„ ๊ฒƒ ๊ฐ™๋‹ค.