I have a problem trying to import a type from another package and file. The struct that I'm trying to import is the one underneath.
type PriorityQueue []*Item
type Item struct {
value string
priority int
index int
}
If I would put the PriorityQueue alongside with all of its methods in the same file I'd declare it with
pq:= &PriorityQueue{}
I've been searching the internet like a madman for an answer on this simple question but I have not found an answer. I usually program in java and import classes is so elementary.
In Go you don't import types or functions, you import packages (see Spec: Import declarations).
An example import declaration:
And by importing a package you get access to all of its exported identifiers and you can refer to them as
packagename.Identifiername
, for example:There are some tricks in import declaration, for example by doing:
You could refer to the exported identifiers with
"m.Identifiername"
, e.g.Also by doing:
You can leave out the package name completely:
But only use these "in emergency" or when there are name collisions (which are rare).
What @icza said above plus:
With Go 1.9 there are type aliases that allow you to peel off types from packages into what look like local types:
package.go
contents:main.go
contents: