英文字典中文字典


英文字典中文字典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如何使用,static的常考面试题)
    本文详细解释了C C++中static关键字的概念,包括其用于修饰局部变量、全局变量和函数的不同情况,以及在C++中关于静态成员的特性。 文章通过实例和面试题帮助读者掌握static的关键用法和作用。
  • C C++ 中 static 的用法全局变量与局部变量 | 菜鸟教程
    被 static 修饰的变量、被 static 修饰的方法统一属于类的静态资源,是类实例之间共享的,换言之,一处变、处处变。 在 C++ 中,静态成员是属于整个类的而不是某个对象,静态成员变量只存储一份供所有对象共用。 所以在所有对象中都可以共享它。
  • static 关键字:从 C 到 C++,一篇文章彻底搞懂它的“七十二变”
    在C++中,static 是一个极具多义性的关键字,其具体含义取决于它出现的上下文。 而它的多义性也造就了其复杂和难以理解,所以今天我们来介绍和梳理一下static 关键字的用法。 C 语言中的用法在 C 语言的世界里,st…
  • C语言static静态变量的用法(新手必看)
    在 C 语言中,普通的变量也叫动态变量,默认有个保留字 auto,可以省略。 如果在变量前面增加一个 static 修饰符,那这个变量就成了静态变量。 存储在静态数据区的变量会在程序刚开始运行时就完成初始化,也是唯一的一次初始化,声明它的函数共享这个变量。
  • static(计算机高级语言关键字)_百度百科
    该关键字在不同编程范式中具有差异化功能特征。 在面向过程程序设计中,static修饰全局变量时限定其作用域为声明文件内部;修饰局部变量时使其在函数调用间保持值持久性;修饰函数时限制其仅在当前文件可访问。
  • C语言——static详解 - 岸南 - 博客园
    静态函数:声明为 static 的函数只能在声明它的文件中调用,不能被其他文件所用。 static 关键字主要用于控制变量和函数的生命周期和作用域,以提高代码的封装性、模块化和安全性。
  • 深入理解 C 语言中的 static 关键字:三大核心应用场景解析
    C语言static关键字详解:修饰局部变量改变存储周期,修饰全局变量和函数限制作用域。 static让局部变量常驻内存,全局变量和函数仅限文件内访问,提升代码安全性和可维护性。 掌握static用法是C语言进阶关键。
  • C C++ 中 static 关键字 | 编程指北-计算机学习指南
    3 static 修饰函数 static 修饰函数可以将函数的作用域限定在当前文件中,使得其他文件无法访问该函数。 同时,由于 static 修饰的函数只能在当前文件中被调用,因此可以避免命名冲突和代码重复定义。
  • c语言中static关键字用法详解-CSDN博客
    本文详细介绍了C语言中static关键字的应用,包括局部变量、全局变量及函数的使用特性,并对比了普通变量与静态变量的区别。 此外,还扩展介绍了C++中static的面向对象特性。
  • static (静态)变量有什么作用? - 知乎
    在C语言中,关键字 static 的意思是静态,他的主要作用有两个: 1 在函数体内 静态变量 具有“记忆”功能,即一个被声明为静态的变量只会被初始化一次,该函数在调用过程中,其值保持不变。 一个变量被定义为静态变量就会将其放到 静态数据区,而不是 栈区。





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