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 关键字:从 C 到 C++,一篇文章彻底搞懂它的“七十二变” 在C++中,static 是一个极具多义性的关键字,其具体含义取决于它出现的上下文。 而它的多义性也造就了其复杂和难以理解,所以今天我们来介绍和梳理一下static 关键字的用法。 C 语言中的用法在 C 语言的世界里,st…
C C++ 中 static 的用法全局变量与局部变量 | 菜鸟教程 被 static 修饰的变量、被 static 修饰的方法统一属于类的静态资源,是类实例之间共享的,换言之,一处变、处处变。 在 C++ 中,静态成员是属于整个类的而不是某个对象,静态成员变量只存储一份供所有对象共用。 所以在所有对象中都可以共享它。
C C++ static关键字详解(最全解析,static是什么,static如何使用,static的常考面试题) 本文详细解释了C C++中static关键字的概念,包括其用于修饰局部变量、全局变量和函数的不同情况,以及在C++中关于静态成员的特性。 文章通过实例和面试题帮助读者掌握static的关键用法和作用。
static(计算机高级语言关键字)_百度百科 该关键字在不同编程范式中具有差异化功能特征。 在面向过程程序设计中,static修饰全局变量时限定其作用域为声明文件内部;修饰局部变量时使其在函数调用间保持值持久性;修饰函数时限制其仅在当前文件可访问。
C语言static静态变量的用法(新手必看) 在 C 语言中,普通的变量也叫动态变量,默认有个保留字 auto,可以省略。 如果在变量前面增加一个 static 修饰符,那这个变量就成了静态变量。存储在静态数据区的变量会在程序刚开始运行时就完成初始化,也是唯一的一次初始化,声明它的函数共享这个变量。 函数中的静态变量是静态局部变量
C C++ 中 static 关键字 | 编程指北-计算机学习指南 3 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的三种用法总结 - 沐歌爱编程 - 博客园 修饰局部变量 1、用静态关键字static修饰的局部变量,在编译的过程中,会在数据区为该变量开辟空间,并对其进行初始化,如果代码中未对其进行初始化,则系统默认初始化为0。 2、用static修饰的局部变量,会延长局部变量的寿命,超出函数的生存期。
C 语言中 static 的作用 - 菜鸟教程 在 C 语言中,static 的字面意思很容易把我们导入歧途,其实它的作用有三条。 (1)先来介绍它的第一条也是最重要的一条:隐藏。 当我们同时编译多个文件时,所有未加 static 前缀的全局变量和函数都具有全局可见性。 为理解这句话,我举例来说明。
static (静态)变量有什么作用? - 知乎 在C语言中,关键字 static 的意思是静态,他的主要作用有两个: 1 在函数体内 静态变量 具有“记忆”功能,即一个被声明为静态的变量只会被初始化一次,该函数在调用过程中,其值保持不变。 一个变量被定义为静态变量就会将其放到 静态数据区,而不是 栈区。