embed_interface.go

Goエキスパート

Explorer

C40
C++40
C#40
Dart40
Go
初級10
中級10
上級10
エキスパート5
context_cancel.go
generic_func.go
worker_pool.go
sync_once.go
embed_interface.go
マスター5
Java40
JavaScript40
Kotlin40
Objective-C40
Perl40
PHP40
Python40
R40
Ruby40
Rust40
Shell40
Swift40
TypeScript40
embed_interface.go
Click to focus
1
2
3
4
5
6
7
8
9
type Reader interface {
   Read([]byte) (int, error)
}
type ReadWriter interface {
   Reader
   Write([]byte) (int, error)
}
type File struct{ name string }
func (f *File) Read(p []byte) (int, error) { return len(p), nil }
0WPM0%0:000/222(0%)|Ln 1, Col 1
UTF-8Go

関連する練習問題