Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[20210617] (Java 11) String repeat(), 인텔리제이 파일 비교, 즉시 로딩 & 지연 로딩 #151

Open
JuHyun419 opened this issue Jun 17, 2021 · 0 comments
Labels

Comments

@JuHyun419
Copy link
Owner

JuHyun419 commented Jun 17, 2021

String.repeat(int count): 자바 11에 추가된 문자열 반복 메소드

image

    @Test
    @DisplayName("문자열을 반복한다")
    void repeat_test() {
        /* given */
        String str = "Hello";

        /* when */
        str = str.repeat(3);

        /* then */
        assertThat(str.length()).isEqualTo(15);
        assertThat(str).isEqualTo("HelloHelloHello");
    }

image



IntelliJ에서 두 파일 비교하기

  • 비교할 두 파일을 선택한 후 Command + D(윈도우: Ctrl + D)

image



즉시 로딩(Eager Loading) & 지연 로딩(Lazy Loading)

@JuHyun419 JuHyun419 added the Java label Jun 17, 2021
@JuHyun419 JuHyun419 changed the title [20210617] (Java 11) String.repeat(int count) [20210617] (Java 11) String repeat(), 인텔리제이 파일 비교 Jun 17, 2021
@JuHyun419 JuHyun419 changed the title [20210617] (Java 11) String repeat(), 인텔리제이 파일 비교 [20210617] (Java 11) String repeat(), 인텔리제이 파일 비교, 즉시 로딩 & 지연 로딩 Jun 17, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant