在Go教程中,以及我看过的大多数Go代码中,都是这样导入软件包的:
import (
"fmt"
"os"
"launchpad.net/lpad"
...
)
但是在http://bazaar.launchpad.net/~niemeyer/lpad/trunk/view/head:/session_test.go中,gocheck包中的导入(带有.
):
import (
"http"
. "launchpad.net/gocheck"
"launchpad.net/lpad"
"os"
)
.
(期间)的意义是什么?
22
请注意,我在问题中添加了点和句点以使其更易于搜索。
—
Jared Farrish