英文字典中文字典


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







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

component    音标拼音: [kəmp'onənt]
n. 组件,组成部分;分,分量;元件
a. 组成的,合成的

组件,组成部分;分,分量;元件组成的,合成的

component
组件; 元件


component
左边部分

component
组件 成分 分量

component
n 1: an abstract part of something; "jealousy was a component of
his character"; "two constituents of a musical composition
are melody and harmony"; "the grammatical elements of a
sentence"; "a key factor in her success"; "humor: an
effective ingredient of a speech" [synonym: {component},
{constituent}, {element}, {factor}, {ingredient}]
2: something determined in relation to something that includes
it; "he wanted to feel a part of something bigger than
himself"; "I read a portion of the manuscript"; "the smaller
component is hard to reach"; "the animal constituent of
plankton" [synonym: {part}, {portion}, {component part},
{component}, {constituent}]
3: an artifact that is one of the individual parts of which a
composite entity is made up; especially a part that can be
separated from or attached to a system; "spare components for
cars"; "a component or constituent element of a system" [synonym:
{component}, {constituent}, {element}]

Component \Com*po"nent\ (k[o^]m*p[=o]"nent), a. [L. componens,
p. pr. of componere. See {Compound}, v. t.]
Serving, or helping, to form; composing; constituting;
constituent.
[1913 Webster]

The component parts of natural bodies. --Sir I.
Newton.
[1913 Webster]


Component \Com*po"nent\, n.
A constituent part; an ingredient.
[1913 Webster]

{Component of force} (Mech.), a force which, acting
conjointly with one or more forces, produces the effect of
a single force or resultant; one of a number of forces
into which a single force may be resolved.
[1913 Webster] Compony

109 Moby Thesaurus words for "component":
actuator, adjunct, air, amplifier, anode, appurtenance, aspect,
atom, atomic particles, base, brute matter, building block,
capacitator, cathode, chemical element, circumstance, clock,
constituent, contents, contingent, control relay, control resistor,
converter, cross section, detachment, detail, division, dole,
earth, effector, electrode, element, elementary,
elementary particle, elementary unit, factor, feature,
feedback amplifier, filament, fire, fixings, formative, fraction,
fundamental particle, generator, grid, hyle, hypostasis, inductor,
ingredient, installment, integral, integrant, item, magnetic relay,
makings, material, material world, materiality, matter,
meter relay, modulator, molecule, monad, natural world, nature,
oscillator, parcel, part, part and parcel, particular, percentage,
photocathode, physical world, plate, plenum, portion,
pressure transducer, quadrant, quarter, quota, random sample,
reactor, regenerator, relay, reluctance amplifier, remainder,
resistor, sample, sampling, section, sector, segment,
servo amplifier, share, specialty, stuff, subdivision, subgroup,
subspecies, substance, substratum, the four elements,
thermal timing relay, transducer, transmitter, trigatron,
unit of being, water


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





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


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

































































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


  • Spring 中的 @Component 注解 - spring 中文网
    本文介绍了 Spring 中的 @Component 注解,以及其他相关的元注解。 还介绍了如何使用 @ComponentScan 自动扫描 Bean 以及如何使用 @Bean 手动创建 Bean。
  • Spring框架中的@Component注解详解 - 知乎
    Spring框架中的@Component注解详解概述 @Component是Spring框架中最核心的注解之一,用于标识一个类为Spring容器管理的组件。 通过组件扫描机制,Spring会自动实例化这些类并将其纳入IoC容器进行管理,是实现依赖注…
  • Spring中的@Component与@Bean:你真的了解它们吗? - CSDN博客
    本文详细比较了Spring框架中@Component和@Bean注解,解释了它们在定义和管理Bean的角色,以及何时选择使用哪种注解。 着重强调了自动扫描、手动配置的区别和注意事项。
  • Spring注解篇:@Component详解!-腾讯云开发者社区-腾讯云
    @Component注解是Spring框架的关键部分,用于将类标记为Spring管理的组件,实现依赖注入和生命周期管理。 本文解析其工作原理、使用方法、优缺点,并提供实际应用案例和测试用例,助开发者全面掌握。
  • Spring @Component 注解详解 | Baeldung中文网
    1 概述 在这篇文章中,我们将深入探讨 Spring 中的 @Component 注解及其相关概念。 我们将了解如何通过它与 Spring 核心功能集成,并充分利用其带来的便利。
  • Spring Boot @Component - 极客教程
    @Component @Component 是最通用的 Spring 注解。 在类路径扫描期间找到装饰有 @Component 的 Java 类,并在上下文中注册为 Spring Bean。 @Service, @Repository 和 @Controller 是 @Component 的专业,用于更具体的情况。 @ComponentScan 确保找到用 @Component 装饰的类并将其注册为 Spring Bean。
  • Spring @Component注解的实现原理及源码解析-开发者社区-阿里云
    想必 @Component 注解大家一直在使用,只要类上加上它,就可以被Spring容器管理,那大家有想过它是怎么实现的吗? 本篇文章就带领到家揭秘。 注解介绍 用来标记的类是一个“组件”或者说是一个Bean,Spring会自动扫描标记 @Component 注解的类作为一个Spring Bean对象。
  • @Component - 简书
    以上就是@Component注解的常用配置和使用方式。 通过@Component注解,可以将一个类标记为组件,使得Spring能够自动扫描并加载这些组件,简化了配置和管理的过程。
  • @Component 详解 | Server 运维论坛 - LearnKu
    强调一点,对于 BeanDefinition 自动扫描检测和依赖注入,所有这些注解(即 @ Component,@ Service,@ Repository,@ Controller)都是相同的,它们彼此可以相互替换
  • Spring Framework 组件注册 之 @Component - 黑色的眼睛- - 博客园
    spring就可以对这个Bean的生命周期进行管理。 前面提到 @Component 是一个元注解,当它标记在另一个注解上时,该组件同样会具有被spring扫描,并识别组件的能力。





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