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
- 월간결산
- 독후감
- 티스토리
- 서평단
- Pandas
- 파이썬
- 파이썬 시각화
- python visualization
- 시각화
- Tistory
- Visualization
- matplotlib
- MySQL
- 서평
- Python
- 블로그
- Ga
- tensorflow
- 통계학
- SQL
- 리눅스
- Blog
- 텐서플로
- 한빛미디어서평단
- 한빛미디어
- MATLAB
- 딥러닝
- 매틀랩
- Linux
- Google Analytics
Archives
- Today
- Total
pbj0812의 코딩 일기
[Go] Pointer 본문
0. 목표
- 포인터 사용법 숙지
1. 코드
- b := &a => b에 a의 메모리 주소를 저장한다 => b가 a를 추적
- *b = 123 => b의 값을 123으로 변경 => a도 같이 변경
package main
import "fmt"
//start point
func main() {
a := 2
b := &a
*b = 123
fmt.Println(b)
fmt.Println(a)
}
2. 결과
0xc0000120a0
123
3. 참고
'ComputerLanguage_Program > Go' 카테고리의 다른 글
[Go] map (0) | 2020.03.13 |
---|---|
[Go] array, slice (0) | 2020.03.13 |
[Go] switch (0) | 2020.03.13 |
[Go] 조건문, variable expression (0) | 2020.03.13 |
[Go] for, range (0) | 2020.03.12 |
Comments