各种语言的模块导入导出形式

java

package com.xx.xxx;

import java.io.File;

import java.awt.*;

python

__all__ = ["SEEK_SET", "SEEK_CUR", "SEEK_END"]

from os import * 受__all__影响

 

无__all__默认导出不以下划线开头的所有成员

 

 

import os

from os import path

 

同一包内

from p2 import f2

不同包内

from p0.p2 import f2

erlang

-module(rebar_edoc).

-export([doc/2, clean/2]).

-spec(doc(Config::#config{}, File::string()) -> ok).

 

 

-include_lib(“eunit/include/eunit.hrl”).

 

rebar_config:get 直接从全局环境中得到库引用

bash

. a.sh

c

#include <stdio.h>

c++

#include <cstream>

using namespaces std;

using std:endl;

nodejs

module.reports = {}

a = require("")

 

posted @ 2015-07-12 14:53  无量天真  阅读(203)  评论(0编辑  收藏  举报