Java์ C์ ์ฐจ์ด์ , Java์์ ์ฃผ์ํ ์ 18.11.17) ์ค๋ซ๋์ C์ธ์ด๋ฅผ ์ฃผ๋ก ์ฌ์ฉํด์ค๋ค, ์ฌํด Java๋ก ๋ฐ๊พธ๋ฉฐ ํท๊น๋ ธ๋ ์ ๋ค๊ณผ ์ธ์ด ์ฐจ์ด, ์ฃผ์ํ ์ ๋ฑ์ ์ ๋ฆฌ ๋ฉ๋ชจ๋ฆฌ ๊ตฌ์กฐ์ Garbage Collection ๊ฐ๋ 8๊ฐ์ '๊ธฐ๋ณธํ๋ณ์' : ์ค์ ๊ฐ ์ ์ฅ / ๋๋จธ์ง '์ฐธ์กฐํ๋ณ์' : ์ด๋ค๊ฐ์ ์ฃผ์๊ฐ ์ ์ฅ ์ด๋ C์ ๋ฌ๋ฆฌ, ์ฐธ์กฐํ๋ณ์๋ค๊ฐ์ ์ฐ์ฐ๋ถ๊ฐ. ex. Date today = new Date(); // Date๊ฐ์ฒด๋ฅผ ์์ฑํ, ๊ทธ ์ฃผ์๋ฅผ ์ฐธ์กฐํ๋ณ์ today์ ์ ์ฅ ์์๋ ์ ์ธ๊ณผ ๋์์ ์ด๊ธฐํ ํด์ผํจ ex. final int MAX_SPEED = 100; long, float์ ๋ฆฌํฐ๋ด์ ์ ๋ฏธ์ฌ ๋ถ์ด๋ ๊ฒ ์ ์. ์ฐ์ฐ์ด ์ํ๋๋ฉฐ, ๋๋ ๋ชจ๋ฅด๊ฒ ํ๋ณํ์ด ์ํ๋๋ ๊ฒฝ์ฐ๊ฐ ์๋ค. ์ฃผ์. ex. 7 + ..
Client code 'test.c' compile gcc test.c -o test Server code 'server.c' compile gcc server.c -o server open 2 terminal, run server, check IP by 'ifconfig'and connect client terminal_server terminal_client ์๋ฒ ๊ตฌ๋ํ, IP๋ก ํด๋ผ์ด์ธํธ์์ ์๋ฒ๋ก ์ฐ๊ฒฐํ๋ฉด ํด๋ผ์ด์ธํธ์์ ์ ๋ ฅํ ๋ฌธ์๊ฐ ์๋ฒ์์ ์ถ๋ ฅ๋๋๊ฒ์ ํ์ธ๊ฐ๋ฅ. ๋ฌผ๋ก , ๋ก์ปฌ์์ ์คํํ ๊ฑฐ๋ฉด IP๋์ localhost๋ 127.0.0.1 ๋๋ ค๋๋ฌด๊ด
code from Computer_Networks_Larry_Peterson_5ed #include #include #include #include #include #define SERVER_PORT 47500 #define MAX_PENDING 5 #define MAX_LINE 256 int main() { struct sockaddr_in sin; char buf[MAX_LINE]; int len; int s, new_s; /* build address data structure */ bzero((char *)&sin, sizeof(sin)); sin.sin_family = AF_INET; sin.sin_addr.s_addr = INADDR_ANY; sin.sin_port = htons(SERVER_..
code from Computer_Networks_Larry_Peterson_5ed #include #include #include #include #include #include #include #define SERVER_PORT 47500 #define MAX_LINE 256 int main (int argc, char * argv[]) { FILE *fp; struct hostent *hp; struct sockaddr_in sin; char *host; char buf[MAX_LINE]; int s; int len; if (argc==2) { host = argv[1]; } else { fprintf(stderr, "usage: simplex-talk host\n"); exit(1); } /* t..
- Total
- Today
- Yesterday
- reversing
- brute-force
- sort
- Java
- ํ๋ก๊ทธ๋๋จธ์ค
- Data Structure
- git
- ์ฐ์ํ ํ ํฌ์ฝ์ค
- Vo
- Stack
- dfs
- ์นํดํน
- OneToMany
- mysql
- ๊ฐ๋ฐ์
- C
- socket
- graph
- Algorithm
- ํ๊ณ
- ๋ฆฌ๋ฒ์ฑ
- JPA
- Android
- FRAGMENT
- javascript
- ํด์ธ์ฌํ
- bfs
- Android Studio
- webhacking.kr
- queue
์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |