Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- bash
- VirtualBox
- grep
- 단축키
- IntelliJ
- tomcat
- Mac
- profile
- 줄바꿈 문자
- find
- Windows
- import
- port
- netsh
- 네트워크
- Windows 10
- plugin
- JavaScript
- maVen
- Eclipse
- vscode
- context
- ssh
- Quartz
- xargs
- lsof
- web.xml
- GIT
- Source
- resource
Archives
- Today
- Total
develog
[rust] &(참조), *(역참조) 본문
let counter = 12;
let reference = &counter; // counter의 참조, 메모리 주소
let value = *reference; // reference의 역참조, 실제 값
Comments