solidity
supports the use of the import
keyword to import global symbols in other contracts
(simply understood as external source code), making development more modular. Generally,
if not specified, all global symbols of the imported file will be imported into the current global scope.
Usage of import
- Import by relative location of source file. For example:
- Import the global symbols of contracts on the Internet through the source file URL. For example:
- Import via the
npm
directory. For example:
- Import contract-specific global symbols by specifying
global symbols
. For example::
- The location of the reference (
import
) in the code: after declaring the version, and before the rest of the code.
Test import
We can use the following code to test whether the external source code was successfully imported:

Summary
In this lecture, we introduced the method of importing external source code using the import
keyword. Through the import
,
you can refer to contracts or functions in other files written by us,
or directly import code written by others, which is very convenient.