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
- 이터레이터
- 구멍가게코딩단
- 데비안
- baeldung
- 코드로배우는스프링웹프로젝트
- 처음 만나는 AI 수학 with Python
- 선형대수
- 서버설정
- /etc/network/interfaces
- 자료구조와 함께 배우는 알고리즘 입문
- 자바편
- 티스토리 쿠키 삭제
- 자료구조와함께배우는알고리즘입문
- ㅒ
- 코드로배우는스프링부트웹프로젝트
- 리눅스
- 스프링 시큐리티
- 네트워크 설정
- Kernighan의 C언어 프로그래밍
- GIT
- resttemplate
- 알파회계
- 스프링부트핵심가이드
- 친절한SQL튜닝
- 페이징
- d
- iterator
- 처음 만나는 AI수학 with Python
- network configuration
- 목록처리
Archives
- Today
- Total
bright jazz music
Go- map 타입에 메소드 추가하기(Add) 본문
package myDict
import "errors"
// map은 struct가 아니다. array처럼 타입이다.
// type에도 메소드를 추가할 수 있다. struc에만 추가할 수 있는 것이 아니다.
// type 옆의 Dictionary는 map[string]string의 alias 같은 것임.
//map은 자동으로 *를 사용한다.
//Dictionary Type
type Dictionary map[string]string
var errNotFound = errors.New("Not Found")
var errWordExists = errors.New("That word already exists")
// Search for a word
func (d Dictionary) Search(word string) (string, error) {
//Dictionary라는 이름의 map에 Search 메소드를 더하는 것이다.
//이 메소드는 string 타입을 word에 받고, string 또는 error로 반환한다.
value, exists := d[word]
if exists {
return value, nil // 값이 없는 경우 nil 반환
}
return "", errNotFound
}
//Add a word to the dictionary
func (d Dictionary) Add(word, def string) error { //추가하려는 단어가 없으면 에러
_, err := d.Search(word) //definition은 필요 없어서 이그노어
switch err {
case errNotFound:
d[word] = def
case nil:
return errWordExists
}
return nil
//if문으로 표현한다면?
// if err == errNotFound{ //추가하려는 단어가 없다면
// d[word] = def //d[키] = 값
// } else if err == nil{ // 그 단어가 이미 있다면
// return errWordExists
// }
// return nil
}
메인
package main
import (
"fmt"
"github.com/hojuncha997/learngo/accounts/myDict"
)
func main() {
dictionary := myDict.Dictionary{}
word := "hello"
definition := "greeting"
err := dictionary.Add(word, definition)
if err != nil {
fmt.Println(err)
}
hello, _ := dictionary.Search(word)
fmt.Println("found", word, "definition: ", hello)
err2 := dictionary.Add(word, definition)
if err2 != nil {
fmt.Println(err2)
}
}
=========
found hello definition: greeting
That word already exists
'Language > Go' 카테고리의 다른 글
Go - URL Checker 하나 씩 순차적 (0) | 2021.02.19 |
---|---|
Go - map 타입에 메소드 추가하기(Update, Delete) (0) | 2021.02.19 |
Go -map type에 메소드 추가하기(Search) (0) | 2021.02.19 |
Go - 메소드2 (Go의 메소드 내부적 호출/ struct에 메소드 추가하기) (0) | 2021.02.18 |
Go - method(기본사용법, 리시버, 에러처리 등, Withdraw) (0) | 2021.02.18 |
Comments