Skip to content

Instantly share code, notes, and snippets.

View whosoonhwang's full-sized avatar
๐ŸŽฏ
Focusing

Whosoon Sean Hwang whosoonhwang

๐ŸŽฏ
Focusing
View GitHub Profile
@whosoonhwang
whosoonhwang / writing.md
Created June 9, 2022 08:58 — forked from longfin/writing.md
์—”์ง€๋‹ˆ์–ด๋ฅผ ์œ„ํ•œ ๊ธ€์“ฐ๊ธฐ

์ด ๊ธ€์€ Heinrich Hartmann ๋‹˜์ด ์ž‘์„ฑํ•˜์‹  ๊ธ€์„ ํ•œ๊ตญ์–ด๋กœ ๋ฒˆ์—ญํ•œ ๊ฒƒ์ž…๋‹ˆ๋‹ค. ์›๋ฌธ์€ https://www.heinrichhartmann.com/posts/writing/ ์—์„œ ํ™•์ธํ•˜์‹ค ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.


๊ธ€์“ฐ๊ธฐ๋Š” ํฐ ์กฐ์ง์—์„œ ์˜ํ–ฅ๋ ฅ์„ ๋ฐœํœ˜ํ•˜๋Š” ๋ฐ ์ค‘์š”ํ•ฉ๋‹ˆ๋‹ค. ๊ฒฝ๋ ฅ ์žˆ๋Š” ์†Œํ”„ํŠธ์›จ์–ด ์—”์ง€๋‹ˆ์–ด๋กœ์„œ์˜ ๊ธ€์“ฐ๊ธฐ๋Š” ์ง๋ฌด ๋ฒ”์œ„๋ฅผ ํ™•์žฅํ•˜๊ณ  ๊ฒฝ๋ ฅ์„ ๋ฐœ์ „์‹œํ‚ค๊ธฐ ์œ„ํ•ด ํš๋“ํ•ด์•ผ ํ•˜๋Š” ๊ฐ€์žฅ ์ค‘์š”ํ•œ ๊ธฐ์ˆ ์ž…๋‹ˆ๋‹ค.

๊ธ€์“ฐ๊ธฐ๋Š” ์–ด๋ ต์Šต๋‹ˆ๋‹ค. ๋งŽ์€ ์†Œํ”„ํŠธ์›จ์–ด ์—”์ง€๋‹ˆ์–ด๋“ค์ด ๊ธ€์“ฐ๊ธฐ์™€ ์”จ๋ฆ„ํ•˜์ฃ . ์ €๋„ ๊ฐœ์ธ์ ์œผ๋กœ ๋ฌธํ•™์— ๋Œ€ํ•œ ๊ด€์‹ฌ์ด ์—†๊ธฐ ๋•Œ๋ฌธ์— ๊ธ€์“ฐ๊ธฐ๊ฐ€ ์ž์—ฐ์Šค๋Ÿฝ์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค.

@whosoonhwang
whosoonhwang / AmountDiscount.java
Last active July 15, 2019 10:02
์ฝ”๋“œ์Šคํ”ผ์น˜ s83 2์ฐจ ๊ณผ์ œ
package reservation;
abstract public class AmountDiscount implements DiscountPolicy.AMOUNT, DiscountCondition {
private final Money amount;
AmountDiscount(Money amount) {
this.amount = amount;
}
@Override
@whosoonhwang
whosoonhwang / src_Main.java
Created July 4, 2019 07:06
์ฝ”๋“œ์Šคํ”ผ์น˜ s83 1์ฐจ ๊ณผ์ œ
import codespitz.*;
public class Main {
public static void main(String[] args) {
final Theater theater = new Theater();
final TicketOffice ticketOffice = new TicketOffice(theater, 0L);
final Movie codespitzMovie = new Movie("codespitz", 50000L);
final Movie aiMovie = new Movie("ai", 10000L);