网站首页  词典首页

请输入您要查询的英文单词:

 

单词 subclass
释义

subclass

美 
英 
  • n.【生】亚纲;【数】子集(合)
  • 网络子类;子类别;子类化
复数:subclasses  
n.
1.
【生】亚纲;【数】子集(合)

例句

释义:
1.
It is ok if you subclass only a few controls but it's going to be a nightmare to subclass a dozen or so controls.
如果你子类化的控件仅有几个,那么这种方法仍可行。但是当你子类化一打(十二个)左右的控件时它将是一个恶梦。
blog.chinaunix.net
2.
Whenever you define a new class as an extension of an existing one, the new class is said to be a subclass of the original.
任何时候你定义一个新类继承自已有的类,这个新类就叫做已有那个类的子类。
www.bing.com
3.
The DelegatePaintPanel subclass allows any image to be the background of any other (partially transparent) component.
DelegatePaintPanel子类允许任何图像作为任何其他(部分透明)组件的背景。
www.ibm.com
4.
Since an instance of a subclass is an instance of your superclass, you could find multiple instances of the singleton.
由于子类的实例也是单例类的实例,所以可能出现多个单例实例并存的情况。
www.bing.com
5.
When applied to a method, it means that the method cannot be overridden by a subclass.
应用于方法时,意味着该方法不能被子类覆盖。
www-128.ibm.com
6.
Two other refactorings, Push Down and Pull Up, move class methods or fields from a class to its subclass or superclass, respectively.
还有两个重构工具,PushDown和PullUp,分别实现将类方法或者属性从一个类移动到其子类或父类中。
www.ibm.com
7.
Any of numerous minute marine and freshwater crustaceans of the subclass Copepoda, having an elongated body and a forked tail.
桡足动物任一种桡足亚纲的大量海洋或淡水甲壳纲小动物,身体细长,尾部分叉
dict.ebigear.com
8.
A Struts action is an instance of an Action class subclass that implements a portion of a Web application and returns a forward.
Struts操作是Action类子类的实例,用来实现一部分Web应用程序并返回一个转发。
www.ibm.com
9.
To fulfill the Liskov principle, you need to adhere to a simple rule: The domain of a method can't be shrunk in a subclass.
要实现利斯科夫原则,您需要坚持简单规则:域的一种方法不能收缩在子类中。
msdn.microsoft.com
10.
The uniqueness of the class cannot be imposed as a compile-time constraint on the subclass unless you use a private constructor.
由于使用了私有的构造方法,单例类不能被强制转化为一个编译期的常量。
www.bing.com
1.
The sorting algorithm can be applied to any subclass of OrderedArray which implements these methods.
排序算法能被用于实现两个方法的任意的OrderedArray的类。
wiki.chinaunix.net
2.
It is the JFrame object with which you share properties and methods -- I do not inherit or subclass the JFrame class.
您将与JFrame对象共享属性与方法——我并没有继承JFrame类。
www.ibm.com
3.
However, the subclass leaves the concrete class as is and does not attempt to instantiate the superclass.
子类没有对具体的方法做改变,也没有试图实例化超类。
blog.sina.com.cn
4.
Similarly, a subclass destructor must call its superclass destructor after it has completed its own resource reclamation.
类似地,子类析构函数在它完成其资源释放之后,也要调用基类的析构函数。
wiki.chinaunix.net
5.
If none of the prepackaged Style classes fit your needs, you can subclass the base Style class and define your own naming conventions.
如果没有预包装的Style类符合您的需要,那么您可以定义Style基类的子类,并定义自己的命名约定。
www.ibm.com
6.
The first two characters of the SQL state are a class value, and the last three characters form a subclass value.
SQL状态的前两个字符是一个类值,后三个字符形成子类值。
www.ibm.com
7.
Thread is a subclass of Object, so any reference produced by an expression of type Thread is a valid reference value of type Object.
Thread是Object的一个子类,因此任何产生Thread类型的表达式产生的引用都是Object类型的有效引用。
blog.163.com
8.
For a normal object (non-array): The object must be an instance of the target class or a subclass of the target class.
对于普通对象(非数组):对象必须是目标类的实例或目标类的子类的实例。
www.ibm.com
9.
According to this principle, the ability to substitute a subclass object for a superclass object is characteristic of good design.
此原则表明,子类对象对超类对象的替代能力是优秀设计的重要标志。
dictsearch.appspot.com
10.
If the target class is an interface, then it is considered a subclass if it implements that interface.
如果目标类是接口,那么会把它当作实现了该接口的一个子类。
www.ibm.com
1.
You never create an instance of it -- instead, you always work with a subclass.
您永远不会创建它的实例――相反,您总是使用它的子类。
www.ibm.com
2.
In a nutshell, the Liskov principle states that it should always be safe to use a subclass in any place where the parent class is expected.
简单地说,利斯科夫原则指出应该始终是安全的在父类别预计的任何地方使用子类。
msdn.microsoft.com
3.
The RestServlet is passed as init-param the name of the Application subclass that the Book service supplies.
RestServlet被传递为init-param,这是Books服务提供的Application子类的名称。
www.ibm.com
4.
Qualified subclass name: Name subclasses to communicate the similarities and differences with a superclass.
子类名称要合格:对子类的命名会表述出其与超类之间的相似和差异之处。
www.infoq.com
5.
It would be perfectly reasonable to subclass GenericDaoHibernateImpl to add query capabilities for each domain object.
让子类GenericDaoHibernateImpl为每个域对象添加查询能力将非常合理。
www.ibm.com
6.
Since the format of the file has changed, a new javax. security. auth. Policy subclass is needed to parse the file.
既然文件格式已经改变,就需要一个新的javax.security.auth.Policy子类来解析文件。
www.ibm.com
7.
Directly, they are actually designed for you to subclass and fill in your specific behavior.
但实际上它们被设计为可以子类化也可以加入特定行为。
www-128.ibm.com
8.
If a subclass of one of these classes needed to override the default behavior, it could do so by overriding the method.
如果这些类中的任何一个的子类需要覆盖默认行为,那么可以通过覆盖这个方法实现。
www-128.ibm.com
9.
This concept is getting more into the area of treating each element of an enumerated type as a subclass.
这个概念正在深入到将枚举类型的每个元素作为一个子类对待的领域。
www.ibm.com
10.
The Swing adaptors allow you to subclass the adaptor and just override the methods you need to handle for the event.
Swing适配器允许您子类化适配器,并且可以仅重写处理事件所需的方法。
www.ibm.com
1.
Primitive recursive functions are a naturally defined subclass of the recursive functions.
递归原语函数是递归函数定义的一个子类。
bbs.chinaunix.net
2.
Once registered, this subclass receives notifications of network state transitions sent by the Lotus Expeditor network component.
一旦注册,这个子类就会接收由LotusExpeditor网络组件发送的网络状态转换的通知。
www.ibm.com
3.
an order of dicotyledonous plants of the subclass Asteridae; have opposite leaves and an inferior compound ovary.
菊亚纲双子叶植物的一目;有成对的叶子和低位复合子房。
qq163s.cn
4.
SOAPFaultException is a subclass of java. lang. RuntimeException, so it is not necessary to declare it in a throws clause.
SOAPFaultException是java.lang.RuntimeException的子类,所以不必要在throws语句中声明它。
www.ibm.com
5.
Template Method lets subclass redefine certain steps of an algorithm without changing the algorithm "s structure. "
模板方法使得子类可以在不改变算法结构的情况下,重新定义算法中的某些步骤。
www.open-china.net
6.
Vocabulary learning strategies as a subclass of language learning strategies also have drawn much attention in recent years.
词汇学习策略作为学习策略的一部分在近几年也受到了很大的关注。
www.boshuo.net
7.
A broadcast receiver is implemented as a subclass of BroadcastReceiver and each broadcast is delivered as an Intent object.
一个broadcastreceiver通过继承BroadcastReceiver类来实现,每个broadcast被作为一个Intent对象发布。
www.cnblogs.com
8.
Another approach to the Expression Problem is multiple inheritance, in which one subclass can extend many superclasses.
表达式问题的另一种方法是多重继承,即一个子类可扩展许多超类。
www.ibm.com
9.
All the subclass does is convert the text data into a date value.
所有的子类将文本数据转换为数据值。
www.ibm.com
10.
Table per-class: (Optional) Each concrete subclass is mapped to a table and contains columns for super class attributes.
按类表:(可选)每个具体的子类映射到一个表,并且包含超类属性的列。
www.ibm.com
1.
Writing a plugin for your own command is also straightforward: subclass Command and register it with the Gem: : CommandManager.
编写一个自己的command插件是非常简单的:编写一个Command的子类,然后将其注册到Gem::CommandManager。
www.infoq.com
2.
Based on these properties, some subclass of P-matrix are used to localize the real eigenvalues of a real matrix.
基于这些性质进一步获得一些新的实矩阵实特征值的包含区域和特征值的实包含区域。
www.boshuo.net
3.
This matches any call to a method defined on a JDBC connection that returns a Statement or any subclass thereof.
这个建议匹配的方法调用是在JDBC连接上定义的,而且会返回Statement或任何子类。
www.ibm.com
4.
However, Cheetah also lets you solve this problem in a more elegant way: by making it possible for templates to subclass each other.
不过,Cheetah还允许使用一种更好的方法来解决这个问题:通过使模板进行细分成为可能。
www.ibm.com
5.
A query on a concrete subclass only generates SQL for that subclass.
具体子类的查询只生成该子类的SQL。
www.infoq.com
6.
Notice in all of this that the GeneralInfoPanel is not a subclass and does not inherit in anyway from javax. swing. JPanel.
注意,在这些代码中,GeneralInfoPanel不是一个子类,也没有从javax.swing.JPanel中继承任何内容。
www.ibm.com
7.
The frontcontroller we offer is a subclass of the Cairngorm frontcontroller and accepts custom command factories.
我们提供的frontcontroller是Cairngormfrontcontroller的一个子类,它接收定制的命令工厂。
www.infoq.com
8.
This means that no subclass of that class can declare a finalizer.
这意味着该类的任何子类都无法声明终结器。
www.ibm.com
9.
Open classes also allow you to make modifications "in place" without the need to subclass.
开放类还允许您执行“就地”修改,而不需要子类化过程。
www.ibm.com
10.
"Table per Subclass" is good for an OLTP system with high concurrency, simple queries and few shared columns.
“每个类层次一张表”对有高并发、简单查询并且没有共享列的OLTP系统来说是个不错的选择。
www.infoq.com
1.
Generally though, you can implement your table model as a subclass of the javax. swing. table. AbstractTableModel class.
通常,您可以将表格模型作为javax.swing.table.AbstractTableModel类的子类来实现。
www.ibm.com
2.
Process one piece of data - this method should be overridden in subclass.
处理一份数据——这个方法应该在子类中被重载。
jabb.sourceforge.net
3.
To perform more sophisticated stream manipulation, subclass StreamReaderDelegate and override the appropriate methods.
执行更复杂的流操作,可以创建StreamReaderDelegate的子类并重写合适的方法。
www.ibm.com
4.
Cover-up investigation is a subclass of forceful investigation. Like enticing investigation, it is included in disguised investigations.
卧底侦查是强制侦查中的一种,与诱惑侦查同属于化装侦查。
dictsearch.appspot.com
5.
You can also override regular functions in a subclass and call the overridden parent function from within the subclass.
您也可以在子类中重写规则函数,从子类中调用重写的父类函数。
www.ibm.com
6.
Whenever a subclass violates the existing contract between its superclasses and their clients, it forces changes in the existing code.
无论何时,只要子类违反了已经存在于其超类和它们用户之间的约定,就必然要修改现有代码。
book.51cto.com
7.
By default, when you create a subclass, its constructor merely calls the constructor of its parent class.
默认情况下,当您创建一个子类时,它的构造函数只调用其父类的构造函数。
www.ibm.com
8.
For our first strategy (one table per subclass), Hibernate will read multiple tables each time an object is instantiated and populated.
对于第一个策略(每个子类一个表),Hibernate每次初始化和填充对象时,会读取多个表。
www.ibm.com
9.
Suppose you wanted to add an implementation of invoice for a subclass of Order or Contract.
假设您想为Order或Contract的子类添加invoice的实现。
www.ibm.com
10.
Classes usually constitute a taxonomic hierarchy (a subclass-superclass hierarchy).
类通常包括一个分类层次(一个子类-超类层次)。
www.ibm.com
1.
In fact, InputStream is abstract, so some sort of subclass is necessary.
实际上,InputStream是一个抽象类,因此某种类型的子类是必要的。
www.ibm.com
2.
I just had to subclass it to make a hypertext object, and add the internet code.
我只需要子类化出来一个超文本对象,然后加上互联网相关代码就行了。
www.infoq.com
3.
For trade occupations, TRA will still issue skills assessments suitable for applying for a Subclass 485 visa.
对于技工类职业,TRA将仍然出具适用于485类签证的技能评估。
hi.baidu.com
4.
If you need to process a multi-page entry into a single form you can subclass AbstractWizardFormController.
如果需要把多页输入处理到一个表单,那么可以继承AbstractWizardFormController。
www.ibm.com
5.
subclass of insects characterized by gradual and usually incomplete metamorphosis.
昆虫的一个亚纲,以逐渐变态或不完全变态为特点。
www.hotdic.net
6.
The root element of an MXML document is a subclass of the Application class.
一个MXML文档的根元素是Application类的一个子类。
www.ibm.com
7.
Based on the examinations above, the report statistically analyzes SMSs' average prices, subscription methods, subclass distribution, etc.
基于以上调查,该报告对短信产品的平均定价、订阅方式、子类分布等进行了统计分析。
www.pday.com.cn
8.
That all Higher Degree by Research (HDR) students-visa subclass 574 - be treated as though they are all AL1 applicants.
所有攻读研究型高等学历(HDR)的学生—574签证类别将按一级风险(AL1)申请人对待。
www.thenewstone.com
9.
The new mapping was a hybrid of "Table per Class Hierarchy" and "Table per Subclass" .
新的映射混合了“每个类层次一张表”和“每个子类一张表”。
www.infoq.com
10.
In Listing 17 you see how each server segment uses a JPanel subclass to delegate the painting of its background.
在清单17中,您可以看到每个服务器段是如何使用JPanel子类来委派背景的绘制的。
www.ibm.com
1.
A subclass with explicit opacity components should override this method to return a color with the specified alpha.
一个拥有不透明通道的子类需要重写这个方法来返回指定了透明值的颜色对象。
www.cocoachina.com
2.
Within that subclass, we create a new method called EventTable that builds a table of results for a given event.
在这些子类内,我们创建了一个名为EventTable的新方法,为给定事件构建了一个结果表。
www.ibm.com
3.
The actual image painting is done in a JPanel subclass called ImagePaintDelegate, as shown in Listing 12.
实际的图像绘制是在一个叫做ImagePaintDelegate的JPanel子类中实现的,如清单12所示。
www.ibm.com
4.
Reducing coupling between a subclass and its superclasses.
减少了子类及其超类之间的耦合。
www.ibm.com
5.
If a more complex set of data is required with more-customized queries, you can subclass the generic DAO.
如果查询需要更复杂的数据集,那么可以从泛型DAO派生出子类。
www.ibm.com
6.
in this paper, we discuss a subclass of operator-valued analytic functions with negative operator coefficients.
讨论了一类具有负算子系数的算子值解析函数族。
tech.zidian8.com
7.
A subclass of these are Unmanned Combat Air Vehicles, which are designed to carry out strike missions in combat.
子类这些都是无人作战飞行器,其目的是为了开展打击任务的战斗。
blog.sina.com.cn
8.
I wrote a special Session subclass called MakotoOpenIdAwareSession to it easier to store openid4java objects in Session.
我编写了一个特殊的Session子类MakotoOpenIdAwareSession,这样便于在Session中存储openid4java对象。
www.ibm.com
9.
targetClassName Optional class type to specify the subclass of cmis: document that you will create for the new documents.
targetClassName用于指定将为新文档创建的cmis:document的子类的可选类类型。
www.ibm.com
10.
In this case, creating Pegasus as a subclass of Horse makes sense because it expresses a relationship between the two classes.
在本例中,创建Pegasus作为Horse的子类很有意义,因为它表示了这两个类之间的关系。
www.ibm.com
1.
This software can be used to select right subclass from the huge data to build model.
软件可以支持用户从大的数据集合中挑选合适的子集进行建模。
paper.pet2008.cn
2.
Subclass to you heart's content, mixin any modules into your domain classes. It just works.
子类化你的核心内容,为你的领域类混入任意模块,这正好能正常工作。
www.infoq.com
3.
Finally, Listing 6 shows a partial implementation of the parameter definition subclass for int parameter values.
最后,清单6显示了int形参值的形参定义子类的部分实现。
www.ibm.com
4.
Red and purple fruits owe their colors to anthocyanins, a subclass of polyphenols, which are ubiquitous in nature.
红色和紫色的水果的颜色是由花青素形成的。花青素是多酚的一种,自然界中普遍存在。
blog.hjenglish.com
5.
The Subclass 485 visa allows students to remain temporarily in Australia with work rights at the completion of their studies.
485签证允许在澳洲的学生在完成学业后在澳临居工作。
www.thenewstone.com
6.
The subclass can then override any particular method to alter the behavior of the base reader.
然后让子类改写某些特殊的方法从而改变基本读取器的行为。
www.ibm.com
7.
Instead, I add extra methods to the subclasses that perform the appropriate action for each subclass.
相反,我向为每个子类执行适当的操作的子类添加额外的方法。
www.ibm.com
8.
Your application can throw this subclass exception and your client would receive this exception.
您的应用程序可以抛出这个子类异常,并且您的客户将接收到这个异常。
www.ibm.com
9.
The agents define a new subclass of compounds, which are selective androgen receptor modulators (SARM).
该试剂定义新一亚类化合物,它们是选择性雄激素受体调节剂(SARM)。
ip.com
10.
To subclass a particular definition, the setting must be open (when inheritance is implemented in the future).
要将特定定义划分子类,该设置必须为open(在以后实现继承时)。
msdn2.microsoft.com
1.
The ConnPoolAS400 subclass extends the ConnPool class and provides its own version of the $klass property.
ConnPoolAS400子类扩展了ConnPool类并提供了$klass属性自己的版本。
www.ibm.com
2.
You create your subclass and override just those methods that you use in your methods under test.
创建一个子类,并仅仅重载您在测试方法中所使用的那些方法。
www.ibm.com
3.
However, because Application is a trait, the method actually "shows up" on the subclass (App).
但由于Application是一个特征,方法实际上会在子类上出现(App)。
www.ibm.com
4.
Create a mock object class as a subclass of the concrete class.
创建一个模拟对象类作为具体类中的一个子类
www.ibm.com
5.
With this strategy, each proper subclass has its own table.
通过这种策略,每个子类都会拥有其自身的表。
www.ibm.com
6.
Listing 6 gives an abbreviated version of the javassist. Translator subclass I wrote to handle these patterns.
清单6给出了我编写来处理这些模式的javassist.Translator子类的简略版本。
www.ibm.com
7.
Streaming: A HitCollector subclass simply prints out the document ID and score for each matching document.
流:对于每一个匹配的出文档,一个HitCollector子类仅仅为其打印出文档ID和分数。
blog.sina.com.cn
8.
Application authors typically subclass AbstractViewController to implement a part of the user interface, such as an input screen or dialog.
通常,应用程序作者子类化AbstractViewController,以实现用户界面的一部分,如输入屏幕或对话框。
www.ibm.com
9.
A subclass could then expose a public constructor, allowing anyone to make instances.
这时,子类可以把构造方法转为公有属性,从而允许任何客户端都可以去创建实例。
www.bing.com
10.
Instead, you should write your own subclass of Figure that hides the details of its structure.
替代方法是,您应当编写自己的Figure子类,该子类掩藏了图形结构的详细信息。
www-128.ibm.com
1.
Also any data change on a subclass involves two tables: the super class table and the subclass table.
任何子类数据的修改都涉及两张表:超类的表和子类的表。
www.infoq.com
2.
Measuring more than 16 inches (407 millimeters), this giant mollusk is the biggest ever found in its subclass--Caudofoveata.
超过16英寸(407毫米)的长度,使这种大型的软体动物成为尾腔亚纲中迄今为止发现的最大的物种。
www.yeeyan.com
3.
Many-to-one encryption and authentication scheme, which is a subclass of group cryptography, is discussed in this paper.
研究群组密码学中的一个子类:多对一加密认证方案。
www.dictall.com
4.
The type of event subclass, which provides further information about each event class.
事件子类的类型,提供有关每个事件类的详细信息。
msdn2.microsoft.com
5.
class-name is the fully qualified name of the class in which the method is declared (or a subclass thereof).
class-name是类的完全限定名,方法在此类(或其子类)中声明。
www.ibm.com
6.
Implement this method in a subclass if you want to have a preview field in the inspector.
如果你想在检视面板有一个预览字段,在子类执行这个方法。
game.ceeger.com
7.
The type of event subclass, providing further information about each event class.
事件子类的类型,提供有关每个事件类的更多信息。
msdn2.microsoft.com
8.
A form bean is an instance of an ActionForm subclass that stores data.
表单bean是存储数据的ActionForm子类的实例。
www.ibm.com
9.
Consume the data in queue - this method should be overridden in subclass.
处理队列中的数据——这个方法应该在子类中被重载。
jabb.sourceforge.net
10.
Define the terms subclass, superclass, and inheritance.
给出超类、子类以及继承的定义。
www.bing.com
1.
Each JTCEvent subclass will define static final values for the major and minor fields that represent its purpose.
每个JTCEvent子类都会为表示其用途的major和minor字段定义静态最终值。
www.ibm.com
2.
Binding with automatic syncing is implemented by a new concrete AutoBinding subclass.
使用自动同步的绑定则通过一个新的AutoBinding子类实现出来。
www.infoq.com
3.
If your application needs to process user entry forms you might subclass AbstractFormController.
如果应用程序需要处理用户输入表单,那么可以继承AbstractFormController。
www.ibm.com
4.
A taxonomic category of related organisms ranking below a subclass and above an order.
下纲生物等级分类中的一个层次,在亚纲之下,目之上。
dict.ebigear.com
5.
Each UI control will subclass Field and give the content provider read and write ability.
每个用户界面控件都是Field的子类,并向内容提供者提供了读写能力。
www.ibm.com
6.
The sys. Trace_subclass_values catalog view contains a list of named column values.
sys.trace_subclass_values目录视图包含指定列值的列表。
msdn2.microsoft.com
7.
Creating a subclass of SOAPMappingRegistry with all pre-registered mapping.
用所有预注册的映射创建SOAPMappingRegistry的一个子类。
www.ibm.com
8.
In this sample scenario, you activate the DB2ACTVITIES event monitor for the service subclass SYSDEFAULTSUBCLASS.
在这个样例场景中,您将为服务子类SYSDEFAULTSUBCLASS激活DB2ACTVITIES事件监控器。
www.ibm.com
9.
A new subclass of macro actions that run when a database is disabled.
新增了一个在禁用数据库时运行的宏操作子类。
office.microsoft.com
10.
Select the correct class or subclass for the employee's business unit.
选择员工业务单位的正确类别或子类。
yeebang.com
1.
In a subclass you can make assumptions about the internal state of the superclass when the method you override is getting called.
当子类所重写的方法被调用时,你可以在子类中对父类的内部状态进行操作。
www.bing.com
2.
Also, each subclass inherits methods from the superclass.
同时,每个亚纲继承来自总纲的方法。
dictsearch.appspot.com
3.
Try custom translation implemented by any subclass.
首先检查是否存在完成定制转换的子类实现。
wiki.redsaga.com
4.
If a class that uses an abstraction has to downcast to a specific subclass in one section, you're not following the Open Closed Principle.
如果在某一部分中,一个抽象了的类必须向下转换为特定的子类,那么你就没有遵循开闭原则。
www.cnblogs.com
5.
Circle is declared as a concrete subclass of Shape.
Circle(圆)被声明为Shape的一个具体的子类。
www.bing.com
6.
The findById method uses the static keyword to enable a late-time binding reference to the subclass's table name.
findById方法使用static关键字来启用对子类的表名的延后绑定引用。
www.ibm.com
7.
To use an ABC, a subclass must inherit from the ABC and override its abstract methods.
要使用ABC,子类必须继承自此ABC并且还要覆盖其抽象方法。
www.ibm.com
8.
Listing 3 is the AbstractWebObservable class, a subclass of java. util. Observable that implements a SOAP mechanism to access the observer.
清单3是AbstractWebObservable类,它是java.util.Observable的子类,实现了访问观察者的SOAP机制。
www.ibm.com
9.
To create a unit test for the string class, you need to subclass the CppUnit: : TestCase class and override the runTest method.
要想为字符串类创建单元测试,需要创建CppUnit::TestCase类的子类并覆盖runTest方法。
www.ibm.com
10.
Classes are arranged in a hierarchy, so that a subclass can inherit behavior from its superclass.
类是有层次性的,所以子类可以继承父类的行为。
www.bing.com
1.
The pros are similar to the above "Table per Subclass" strategy.
优点和上面的“每个子类一张表”策略相似。
www.infoq.com
2.
When using the subclass generic type parameters, you must repeat any constraints stipulated at the base class level at the subclass level.
在使用子类一般类型参数时,必须在子类级别重复在基类级别规定的任何约束。
msdn2.microsoft.com
3.
In your derived class, you can choose which interface to use by deriving from the appropriate PreviewHandler subclass.
在派生类中,通过从合适的PreviewHandler子类进行派生,可以选择要使用的接口。
msdn.microsoft.com
4.
Every application is met the elapse as time, produce subclass.
每个应用都会随着时间的推移,产生子类。
pjprimer.com
5.
If a component class is a subclass of another component class, then it inherits that base class' message catalog.
如果一个组件类是另一个组件类的子类,那么它继承那个基类的信息目录。
dictsearch.appspot.com
6.
The Event Subclass column provides information about the type of query.
事件子类列提供有关查询类型的信息。
msdn2.microsoft.com
7.
The laws also provide greater protection for more vulnerable subclass 457 visa holders to ensure they are not exploited.
法律为那些较易受到侵害的457类签证持有者提供了更多的保护,确保他们免受剥削。
www.thenewstone.com
8.
Provides a class for implementing managed window procedures as described in How to: Subclass a TreeView by Using Native Callbacks.
提供用于实现托管窗口过程(如如何:使用本机回调创建TreeView的子类中所述)的类。
msdn2.microsoft.com
9.
The Interest Rate class is a concrete subclass of Account.
利率类是一个具体子类的帐户。
zhidao.baidu.com
10.
We do this by creating a subclass of dojox. grid. editors. Select and specializing the format method.
为此,我们创建了dojox.grid.editors.Select的一个子类并专注于format方法。
www.ibm.com
1.
The device descriptor read by the host controller driver contains information about the device, such as class, subclass, and protocol.
主机控制器设备驱动程序读取的设备描述符包含关于设备的信息,例如class、subclass和protocol。
www.ibm.com
2.
How does this affect me making an application for a subclass 485 visa?
这项新政变化对我申请485签证会有什么影响?
thenewstone.com
3.
You'll start by creating a GUI that is a Java Panel subclass called Scribble, as shown in Listing 5.
首先是创建一个为JavaPanel子类的GUI,称为Scribble,如清单5所示。
www.ibm.com
4.
RequestEvent, a subclass of JTCEvent, is used to represent a lightweight transaction or single-step service request.
RequestEvent是JTCEvent的子类,用来表示一个轻量级事务或单步服务请求。
www.ibm.com
5.
The table below lists the event subclass values for this event.
下表列出了此事件的事件子类值。
msdn2.microsoft.com
6.
This name is used to intercept the action in the portlet subclass.
这个名称用来截取portlet子集中的动作。
www-128.ibm.com
7.
Rectangle is also a concrete subclass of Shape that defines draw and overrides toString.
Rectangle也是Shape得一个具体子类,定义了draw方法,重写了toString。
www.bing.com
8.
Next, the Swing components (in this case a JLabel subclass that shows updating time) are created, as show in Listing 6.
接下来,创建Swing组件(在本例中是显示更新时间的JLabel子类),如清单6所示。
www.ibm.com
9.
The triangle is also a subclass of the Polygon type, which is derived from a Figure type.
triangle还是Polygon类型的一个子类,后者由Figure类派生而来。
www.ibm.com
10.
If you use the subclass, and even look at its documentation, you get no indication that anything is incomplete.
如果您使用子类,或者查看它的文档,根本没有线索表明还有什么地方没有完成。
www-128.ibm.com
1.
There is a subclass of the base Message class specific to each type of message.
Message基类的一个子类特定于消息的具体类型。
www.ibm.com
2.
Next, you'll need to create a subclass of SkinTemplate and override the initPage method to indicate your skin's name, style, and template.
接下来,需要创建SkinTemplate的子类并覆盖initPage方法来表明您皮肤的名称、样式和模板。
www.ibm.com
3.
This makes it considerably easier to subclass and modify your connector in the future.
这使子类化和以后修改连接器更容易。
www-128.ibm.com
4.
That will allow us to subclass Lottery and override this method.
这将允许我们生成Lottery的子类并覆盖此方法。
www.ibm.com
5.
Listing 3 gives the ASM implementation subclass.
清单3给出了ASM实现的子类。
www.ibm.com
6.
To change the behavior of the Factory class, you simply subclass FactoryImpl and override its non-static methods.
要更改Factory类的行为,只要子类化FactoryImpl并覆盖其非静态方法。
www.ibm.com
7.
tmpl can import the generated Skeleton class and subclass it.
tmpl可以导入生成的Skeleton类并对其进行细分。
www.ibm.com
8.
This is the class that does the actual work of processing incoming events; it is a subclass of DefaultMessageHandler.
该类实际执行处理传入事件的任务;它是DefaultMessageHandler的子类。
www.ibm.com
9.
A polymorphic query on Payment generates three separate SQL statements each of which is on a subclass.
对于Payment的多态查询生成三条独立的SQL语句,每个对应一个子类。
www.infoq.com
10.
Is a subclass of the basic.
类的一个子类。
www-128.ibm.com
1.
Now we put our attention on how to subclass a window. Note that subclassing is not limited to controls, it can be used with any window.
现在我们把注意力放在如何子类化一个窗口上。注意,子类化并不是仅限制于控件,它能被用于任何窗口。
blog.chinaunix.net
2.
A handler is not overridable in a subclass, so you can add as many handlers as you like to an event and they will all fire.
处理者在子类中是不可重写的,因此可以根据需要为事件增加多个会被触发的处理者。
www.openface.org.cn
3.
A quick way to get started is to subclass or copy GEF's GraphicalEditor.
快速开始的方法就是生成子类或复制GEF的GraphicalEditor。
www.ibm.com
4.
Smooth subclass becomes science and technology is fiber-optic communication most the lead, area that has an outlook most.
光子集成科技是光纤通信最超前、最有前途的区域。
www.eebug.cn
5.
Do you mean to create an instance of cmis: document or do you want a subclass of document named CmisJpg?
您的意思是要创建cmis:document的一个实例呢还是想要名为CmisJpg的文档的一个子类呢?
www.ibm.com
6.
Sometimes you need to write a subclass (often as an inner class) in order to test protected methods.
有时需要编写一个子类(通常作为内部类)来测试protected的方法。
www.ibm.com
7.
Subclass 570 - ELICOS visa holders are not eligible to bring dependants to Australia.
类别ELICOS签证持有人不能携家属前往澳大利亚。
dictsearch.appspot.com
8.
You must subclass (that is, create a class that extends it) and create an instance of the child class.
必须创建子类(即,创建继承它的类),并创建该子类的实例。
www.ibm.com
9.
For example, any subclass of java. lang. Throwable or java. awt. Component inherits serializability from its ancestor.
例如,java.lang.Throwable或java.awt.Component的任何子类都会从其祖先继承可串行性。
www.ibm.com
10.
In order to view the subclass hierarchy, select Incoming.
为了查看子类层次,选择Incoming。
www.ibm.com
1.
You also have to answer questions like: do you allow clients to subclass from this type?
你也同时必须回答这个问题:你是否允许客户继承这个类?
www.bing.com
2.
Aspects can be abstract and they can use inheritance to subclass, just like Java objects.
方面可以是抽象的,所以可以用继承来派生子类,就像Java对象一样。
www-128.ibm.com
3.
For example, you can subclass your existing object model and represent each type as an event.
例如,您可以将已有的对象模型分类并且将每一个类型表示为一个事件。
www.ibm.com
4.
However, you will notice above the Ext. onReady call that I have created a new subclass, MyWindow.
然而,您会注意到Ext.onReady调用,我创建了一个新子类MyWindow。
www.ibm.com
5.
Click Create subclass (marked 3 in Figure 11).
单击Createsubclass(在图11中标识为3)。
www.ibm.com
6.
Can dependants go to Australia with a subclass 570 - ELICOS visa holder?
家属是否能够与570类别ELICOS签证持有人一同前往澳大利亚?
dictsearch.appspot.com
7.
javax. realtime. NoHeapRealtimeThread (NHRT) is another new thread type in the RTSJ that is a subclass of javax. realtime. RealtimeThread.
NoHeapRealtimeThread(NHRT)是RTSJ中的另一种新的线程类型,它是javax.realtime.RealtimeThread的一个子类。
www.ibm.com
8.
I am currently on a subclass 485 visa and have not yet applied for a permanent GSM visa.
我目前是485签证,尚未申请永居技术移民签证。
thenewstone.com
9.
The code in Listing 2 specifies that SavingAccount is a class that is a subclass of Account.
清单2中的代码指定SavingAccount是一个类,它是Account的一个子类。
www.ibm.com
10.
For example, the OrderService could have an operation to add any subclass of Item to an existing Order.
例如,OrderService可以有为现有订单添加任何Item子类的操作。
www.ibm.com
1.
Suppose that this bug is eventually fixed, but, in the meantime, a subclass of class
假设这个错误终于被改正了,但同时,类
www-128.ibm.com
2.
While these methods will allow you to easily make changes to the look and feel, any advanced designs should subclass
虽然用这些方法可以容易地对外观进行改变,但是所有高级的设计都应当继承
www-128.ibm.com
3.
Basis-Free Expressions for the Derivatives of a Subclass of Nonsymmetric Isotropic Tensor Functions
一类非对称各向同性张量函数导数的不变表示
www.ilib.cn
4.
If you want to move beyond the basic changes of color, size, and buttons on the title bar, you ll have to subclass the
如果希望做比颜色、大小和标题栏中的按钮这样的基本改变更多的事情,就必须继承
www-128.ibm.com
5.
The Extreme Points and Support Points of a Subclass of Starlike Functions
星形函数族的一个子族的极值点与支撑点
www.ilib.cn
6.
A true object-oriented approach would define a class representing a sprite, possibly as a subclass of
如果是按真正面向对象的方法,应该定义一个类代表一个子图形,可能是作为
www-128.ibm.com
7.
Mock object: A subclass (or implementation) of the collaborator that follows the mock object pattern
模仿对象:遵循模仿对象模式的合作者的子类(或实现)
www.ibm.com
8.
In an earlier draft, it was a subclass of
在早期设计中,它是
www-128.ibm.com
9.
You can change the size and colors of the buttons, and if you create advanced window buttons, you can subclass
可以改变按钮的大小和颜色,如果创建高级的窗口按钮,那么可以继承
www-128.ibm.com
10.
The subclass implementation must repeat all constraints that appeared at the base method level
子类实现必须重复在基础方法级别出现的所有约束
msdn2.microsoft.com
1.
Equivalence Structure of a Subclass of Minimal Unsatisfiable Formulas
一个极小不可满足公式子类的等价结构
www.ilib.cn
2.
IgG subclass deficiency in infants with first episode lower respiratory tract infections
婴幼儿初次下呼吸道感染与血清IgG亚类缺陷
service.ilib.cn
3.
Several Inequalities about Certain Subclass of Analytic Functions
关于某类解析函数的几个不等式
www.ilib.cn
4.
Write a GraphicsProgram subclass that generates the following picture of a snowperson:
写一个GraphicsProgram的子类,使之输出下图的雪人:
www.bing.com
5.
Application of Fractional Calculus on Certain Subclass of Analytic Functions
分数次微积分算子在一类解析函数上的应用
www.ilib.cn
6.
When overriding them, the subclass must provide the corresponding types in the method signatures
在重写它们时,子类必须在方法签名中提供相应的类型
msdn2.microsoft.com
7.
A Subclass of Certain Starlike Functions with Negative Coefficients
一类负系数星像函数类
www.ilib.cn
8.
A Deadlock Prevention Strategy for a Subclass of FMS
一类柔性制造系统的死锁预防策略
www.ilib.cn
9.
Amendments To Subclass 679 - Sponsored Family Visitor Visa - Limitation On Approval Of Sponsorship
679家庭担保类探亲访问签证对担保资格批准的限制修改
www.ozcn.net
10.
A Subclass of Meromorphic P-Valent Functions with Positive Coefficient
具有正系数的亚纯P叶函数的一个子类
www.ilib.cn
1.
Number of Operations Added by a Subclass, NOA
由子类增加的操作的数量
218.24.233.167:8000
2.
The highlighted subclass restriction above
上述被高亮的子类限定
en.transwiki.org
3.
Which stores information about an individual contact, is a subclass of
存储关于个人联系信息的
www-128.ibm.com
4.
On a Subclass of Functions with Negative Coefficients
一类具有负系数的函数子族
www.ilib.cn
5.
I track the concrete subclass of normal action classes as a
我将正常操作类的具体子类作为
www-128.ibm.com
6.
This class must be a subclass of
该类必须是
www-128.ibm.com
7.
Keyword to create a new enumerated type, you are essentially creating a subclass of the
关键字创建新的枚举类型时,实际上是在创建
www-128.ibm.com
8.
The resource is a subclass of a class
资源是一个类的子类
www.w3pop.com
9.
Results in differentiation of subclass of ABO blood groups
ABO血型亚型鉴定结果分析
www.ilib.cn
10.
One way to capture this information is to create a subclass of the
捕捉这个信息的一个方法是创建
www-128.ibm.com
1.
The Design of Application System SubClass in VFP
VFP系统中应用系统子类的设计
service.ilib.cn
2.
On a New Subclass of p-Valent Analytic Functions
关于p叶解析函数的一个新子类
service.ilib.cn
3.
For more complex borders that are not rectangular, you will need to subclass
要想得到非矩形的复杂边框,需要继承
www-128.ibm.com
4.
Checks in this fashion is that, if we were to add another subclass of
检查语句的一个缺点是,如果我们要添加
www-128.ibm.com
5.
Replace Type Code with Subclass
以子类取代型别码
web.java-asp.net
6.
RuleDialog, a subclass of RuleDialog that provides a dialog for creating and editing a rule
RuleDialog的子类提供了创建和编辑规则的对话框
www.ibm.com
7.
Every class you define is a subclass of
所有自定义的类都是
www-128.ibm.com
8.
How do I subclass the Desktop Window
制作桌面的子类
www.vsfan.net
9.
The type B cannot subclass the final class A B
型不能继承最终A类七
wenku.baidu.com
10.
Subclass Query Technology Based on Web Database
基于Web数据库的子集合查询技术
scholar.ilib.cn
1.
In Listing 6, we used an anonymous inner subclass of
在清单6中,我们使用了
www-128.ibm.com
2.
How to subclass application windows
如何将应用程序窗口子类化
www.ibm.com
3.
For example, event subclass values for the Execution Warning event class represent the type of execution warning
例如,ExecutionWarning事件类的事件子类值代表执行警告的类型
msdn2.microsoft.com
4.
Which is itself a subclass of plain old
它本身是普通的
www-128.ibm.com
5.
What visa subclass do you currently hold
你现在持有的是哪种签证
dir.tigtag.com
6.
Is a class that is a subclass of
是一个类,而且是
www-128.ibm.com
随便看

 

英汉双解词典包含2704715条英汉词条,基本涵盖了全部常用单词的翻译及用法,是英语学习的有利工具。

 

Copyright © 2004-2022 Newdu.com All Rights Reserved
更新时间:2025/8/10 18:03:06