英文字典中文字典Word104.com



中文字典辭典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   







請輸入英文單字,中文詞皆可:

customs    音標拼音: [k'ʌstəmz]
n. 關稅(風俗)

關稅(風俗)

customs
n 1: money collected under a tariff [synonym: {customs}, {customs
duty}, {custom}, {impost}]

customs \customs\ n. pl.
1. money collected under a tariff; a duty imposed on imported
goods.

Syn: customs duty, custom, impost.
[WordNet 1.5]

2. the government department administering the collection of
import tariffs. Used with as singular verb.
[PJC]

3. that area within an airport, sea port, or other border
station where freight or the baggage of travellers is
checked for dutiable materials or contraband; as, it took
an hour to get through customs.
[PJC]

66 Moby Thesaurus words for "customs":
Internal Revenue Service, VAT, ad valorem duty, alcohol tax,
amusement tax, assessment on default, assessor, capital gains tax,
capitation, capitation tax, corporation tax, customhouse,
customs duty, death duty, death tax, doomage, duty, estate duty,
estate tax, excess profits tax, excise, excise tax, exciseman,
export tax, farmer, federal tax, gabelle, gift tax, head tax,
import tax, income tax, inheritance tax, internal revenue tax,
land tax, liquor tax, local tax, luxury tax, nuisance tax,
personal property tax, poll, poll tax, property tax,
property-increment tax, protective tariff, provincial tax,
publican, rates, revenue tariff, revenuer, sales tax, salt tax,
school tax, severance tax, specific duty, state tax, tariff,
tariff duty, tax assessor, tax collector, tax farmer, taxer,
taxman, telephone tax, use tax, value added tax, window tax

Gebruche (pl)
Sitten (pl)
Zlle (pl)
Zoll (f)
Zoll (m)
Zollmter (pl)


請選擇你想看的字典辭典:
單詞字典翻譯
customs查看 customs 在Google字典中的解釋Google英翻中〔查看〕
customs查看 customs 在Yahoo字典中的解釋Yahoo英翻中〔查看〕





安裝中文字典英文字典查詢工具!


中文字典英文字典工具:
選擇顏色:
輸入中英文單字

































































英文字典中文字典相關資料:
  • C#中如何使用指针,如何给指针赋值与取值?-百度经验
    C#语法中是有指针的,只不过不像C++中的指针那样使用很广泛,因为,在C#语法中本身并不推荐使用指针,因为,直接操作内存,控制不好容易出错。 那么,在C#中如何使用指针,如何给指针赋值与取值呢?
  • C# 二维数组可否使用指针-百度经验
    我下载了msdn上的几个关于C#指针的实例代码,发现用的最多的是调用api函数,在api函数中,有大量的指针参数。 5 fixed的使用可能产生存储碎片,因为它们不能移动。 如果确实需要固定对象,固定对象的时间应该越短越好。 6 可以使我们了解非托管类型的内存
  • Unity 之 C#与C++ C交互指针函数指针结构体交互-百度经验
    在C#与C++结构体交互的时候,在C#注意适当加上 [StructLayout (LayoutKind Sequential)] 修饰,不然,可能无法正常交互 在C#与C++函数指针交互的时候,注意在C++中把C#传过来的回调函数,保存起来,方便后期调用 编辑于2019-07-19,内容仅供参考并受版权保护 赞 踩 分享 阅读
  • C#如何使用指针,需要做哪些配置才能通过编译?-百度经验
    2 7 使用如下语句定义一个指针,int* x; 这时候编译器会报错:“指针和固定大小缓冲区只能在不安全的上下文中使用” 3 7 出现这种情况的原因是,C#强制要求将这类不安全的代码包裹在unsafe代码块中,所以,在指针使用的范围包裹一层unsafe就可以使用指针了 4 7
  • C#判断二进制文件读取到末尾!-百度经验
    objFileStream = New FileStream ( MapPath ( "files cfg" ), FileMode Open )objBinaryReader = New BinaryReader ( objFileStream)file_id = objBinaryReader ReadInt32 ()file_version = objBinaryReader ReadInt32 ()这是读二进制文件的代码,请问,如何判断读到文件尾了?
  • VB. net 和C#. net 各有什么优缺点 - 百度经验
    C# net优点:运算符重载。不安全代码(指针和固定内存区)、 无符号整数、移位运算。 VB的优点: 即时编译、静态事件绑定、条件异常捕获、COM兼容类、宽松的类型检查和变量声明、Visual Basic Runtime库、可选参数、带参数属性、模块等语言特征、动态数组。 通过VB NET开发好的程序绝对没有问题
  • C#编写执行unsafe代码入门 - 百度经验
    然后我们就可以编写不安全代码了。unsafe关键字可以修饰一个语句块,语句块内可以支持指针类型,有指针操作,无边界检查等。 如图,bitData Scan0是一个IntPtr类型,在unsafe代码块中把该指针类型转换为byte*,进行指针操作。
  • LabVIEW中簇和C语言中的结构体-百度经验
    参数: 1)设置返回值名称和类型;2)设置输入传递参数名称、数据类型和数据格式;3)设置输出传递参数名称、数据类型和
  • C#如何判断鼠标在窗口内(Winform)-百度经验
    使用如图代码判断鼠标位置是否在客户区外。 如果要判断鼠标是否在整个窗体外,可以自己用Size属性的分量和ClientSize属性的分量来计算,这是个加减法问题。
  • c# 按钮控件鼠标划过变色 - 百度经验
    1 在事件栏中找到(MouseMove)点击,在它右侧变为编辑状态时如图在红色框中双击,进入编辑状体按图操作! 2 在事件栏中找到(MouseLeave)点击,在它右侧变为编辑状态时如图在红色框中双击,进入编辑状体按图操作!





中文字典-英文字典  2005-2009

|中文姓名英譯,姓名翻譯 |简体中文英文字典