英文字典中文字典


英文字典中文字典51ZiDian.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       







请输入英文单字,中文词皆可:

static    音标拼音: [st'ætɪk]
n. 静电,静电干扰
a. 静态的,静电的

静电,静电干扰静态的,静电的

static
静态常式


static
静态

static
静态

static
adj 1: not in physical motion; "the inertia of an object at
rest" [synonym: {inactive}, {motionless}, {static}, {still}]
2: concerned with or producing or caused by static electricity;
"an electrostatic generator produces high-voltage static
electricity" [synonym: {electrostatic}, {static}]
3: showing little if any change; "a static population" [synonym:
{static}, {stable}, {unchanging}]
n 1: a crackling or hissing noise caused by electrical
interference [synonym: {static}, {atmospherics}, {atmospheric
static}]
2: angry criticism; "they will probably give you a lot of static
about your editorial"

Static \Stat"ic\ (st[a^]t"[i^]k), Statical \Stat"ic*al\
(-[i^]*kal), a. [Gr. statiko`s causing to stand, skilled in
weighing, fr. 'ista`nai to cause to stand: cf. F. statique.
See {Stand}, and cf. {Stage}.]
1. Resting; acting by mere weight without motion; as,
statical pressure; static objects.
[1913 Webster]

2. Pertaining to bodies at rest or in equilibrium.
[1913 Webster]

{Static electricity}, {Statical electricity}. See the Note
under {Electricity}, 1.

{Statical moment}. See under {Moment}.
[1913 Webster]

193 Moby Thesaurus words for "static":
Babel, abeyant, abiding, apathetic, at a standstill, at anchor,
atmospherics, battery-powered, bedlam, biostatic, birdies, blaring,
blasting, blind spot, blooping, blurping, cacophony, capacity,
cataleptic, catatonic, changeless, character, confusion of tongues,
constant, contemplative, continuing, crawling, creeping, dead,
dead-still, difficulties, difficulty, distortion, do-nothing,
dopey, dormant, drift, dull, durable, dynamoelectric, electric,
electric-powered, electrified, electrifying, electrochemical,
electrodynamic, electrokinetic, electromechanical, electrometric,
electromotive, electropneumatic, electrostatic, electrothermal,
enduring, fade-out, fading, feedback, firm, fixed, flak, flat,
flutter, fluttering, footing, foul, frozen, galvanic,
galvanometric, geostatic, groggy, heavy, hell, hissing, howling,
hum, hydroelectric, idle, immobile, immotive, immovable, immutable,
in abeyance, in suspense, inactive, inert, intact, interference,
invariable, inviolate, laissez-aller, laissez-faire, languid,
languorous, lasting, latent, leaden, lifeless, location, locus,
logy, meditative, motionless, motorboating, moveless, neuter,
neutral, noise, out of commission, pandemonium, paralytic,
paralyzed, passive, permanent, perpetual, persistent, phlegmatic,
photoelectric, piezoelectric, place, point, position, problems,
procrastinating, quiescent, quietist, quietistic, racket, rank,
reception, remaining, riding at anchor, rigid, rumble, scratching,
sedentary, shredding, site, situation, slack, sleeping, sluggish,
slumbering, smoldering, solid, spot, squeals, stabile, stable,
stagnant, stagnating, standing, standpat, state, station,
stationary, statuelike, staying, steadfast, steady, sticky, still,
stock-still, stopped, stuck, suspended, sustained, tame, torpid,
trouble, unactive, unaltered, unaroused, unchangeable, unchanged,
unchanging, unchecked, undestroyed, unemployed, unfading,
unfailing, unmoved, unmoving, unshifting, unvaried, unvarying,
vegetable, vegetative, voltaic, where, whistles, woomping, wow,
wowwows


请选择你想看的字典辞典:
单词字典翻译
Static查看 Static 在百度字典中的解释百度英翻中〔查看〕
Static查看 Static 在Google字典中的解释Google英翻中〔查看〕
Static查看 Static 在Yahoo字典中的解释Yahoo英翻中〔查看〕





安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • C C++ 中 static 的用法全局变量与局部变量 | 菜鸟教程
    被 static 修饰的变量、被 static 修饰的方法统一属于类的静态资源,是类实例之间共享的,换言之,一处变、处处变。 在 C++ 中,静态成员是属于整个类的而不是某个对象,静态成员变量只存储一份供所有对象共用。 所以在所有对象中都可以共享它。
  • C C++ static关键字详解(最全解析,static是什么,static如何使用,static的常考面试题)
    本文详细解释了C C++中static关键字的概念,包括其用于修饰局部变量、全局变量和函数的不同情况,以及在C++中关于静态成员的特性。 文章通过实例和面试题帮助读者掌握static的关键用法和作用。
  • static(计算机高级语言关键字)_百度百科
    该关键字在不同编程范式中具有差异化功能特征。 在面向过程程序设计中,static修饰全局变量时限定其作用域为声明文件内部;修饰局部变量时使其在函数调用间保持值持久性;修饰函数时限制其仅在当前文件可访问。
  • static (静态)变量有什么作用? - 知乎
    在C语言中,关键字 static 的意思是静态,他的主要作用有两个: 1 在函数体内 静态变量 具有“记忆”功能,即一个被声明为静态的变量只会被初始化一次,该函数在调用过程中,其值保持不变。 一个变量被定义为静态变量就会将其放到 静态数据区,而不是 栈区。
  • static变量及其作用,C语言static变量详解 - C语言中文网
    static变量及其作用,C语言static变量详解 在 C 语言中,static 关键字不仅可以用来修饰变量,还可以用来修饰函数。 在使用 static 关键字修饰变量时,我们称此变量为 静态变量。 静态变量的存储方式与全局变量一样,都是静态存储方式。
  • 深入理解 C 语言中的 static 关键字:三大核心应用场景解析
    C语言static关键字详解:修饰局部变量改变存储周期,修饰全局变量和函数限制作用域。 static让局部变量常驻内存,全局变量和函数仅限文件内访问,提升代码安全性和可维护性。 掌握static用法是C语言进阶关键。
  • C C++ 中 static 关键字 | 编程指北-计算机学习指南
    2 static 修饰局部变量 static 修饰局部变量可以使得变量在函数调用结束后不会被销毁,而是一直存在于内存中,下次调用该函数时可以继续使用。 同时,由于 static 修饰的局部变量的作用域仅限于函数内部,所以其他函数无法访问该变量。
  • C++ keyword: static - cppreference. com
    Usage declarations of namespace members with static storage duration and internal linkage definitions of block scope variables with static storage duration and initialized once declarations of class members not bound to specific instances
  • C 语言中 static 的作用 - 菜鸟教程
    在 C 语言中,static 的字面意思很容易把我们导入歧途,其实它的作用有三条。 (1)先来介绍它的第一条也是最重要的一条:隐藏。 当我们同时编译多个文件时,所有未加 static 前缀的全局变量和函数都具有全局可见性。 为理解这句话,我举例来说明。
  • C C++中static关键字深入的剖析 - 知乎
    internal (内部链接): 这是 static 关键字用于全局标识符时的效果。 标识符只在定义它的那个源文件内部可见,对其他文件是“隐藏”的 static 的所有用法都可以归结为:它改变了标识符默认的“存储期”或“链接”属性





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