英语人>词典>汉英 : 类成员函数 的英文翻译,例句
类成员函数 的英文翻译、例句

类成员函数

基本解释 (translations)
method

更多网络例句与类成员函数相关的网络例句 [注:此内容来源于网络,仅供参考]

In this tutorial we will see how to use a class member function as a callback handler.

在本例中我们将看到怎样使用类成员函数作为回调句柄。

How do I declare and use a pointer to a class member function?

我如何申报,并使用一个指向类成员函数

The fact that member-function template parameters are fixed by the template arguments of the object means that calling a class template member function is more flexible than comparable calls to function templates.

对象的模板实参能够确定成员函数模板形参,这一事实意味着,调用类模板成员函数比调用类似函数模板更灵活。

Finally introduces the define and realization of member variable and member function of class ...

文中首先对面向对象的概念,用户界面设计以及二者之间的关系进行阐述,提出运用面向对象的用户界面设计方法时遵循的原则,然后具体介绍空管辅助系统中用户界面的设计思想和具体的实现方法,最后给出一个主要的界面类———窗口类的成员变量和成员函数定义以及实现。

Like any other function template, a member function of a class template is used to generate instantiations of that member.

像任何其他函数模板一样,需要使用类模板的成员函数产生该成员的实例化。

The second way is to call a class member function of the client class through the interface that is provided with your class package.

第二种就是通过接口来调用一个客户端的类成员函数,这个接口在类中提供。

Each member function has an extra, implicit parameter that binds the function to the object on which the function was called.

每个成员函数都有一个额外的、隐含的形参将该成员函数与调用该函数的类对象捆绑在一起。

Using the classes from the previous two exercises, add a pair of static member functions to class Bar. The first static, named FooVal, should return the value of class Bar's static member of type Foo. The second member, named callsFooVal, should keep a count of how many times xval is called.

使用上面两题中定义的类,给 Bar 类增加一对成员函数:第一个成品命名为 FooVal,返回 Bar 类的 Foo 类型 static 成员的值;第二个成员命名为 callsFooVal,保存 xval 被调用的次数。

A class member function is unrelated to, and cannot overload, ordinary nonmember functions or functions declared in other classes.

类的成员函数与普通的非成员函数以及在其他类中声明的函数不相关,也不能重载它们。

Similarly, the nonstatic member functions in the enclosing class have a this pointer that points to an object of the enclosing type. That object has only the members defined in the enclosing class.

同样,外围类中的非静态成员函数也具有 this 指针,它指向外围类型的对象,该对象只具有外围类中定义的成员。

更多网络解释与类成员函数相关的网络解释 [注:此内容来源于网络,仅供参考]

bicycle:自行车类

定义一个车(Vehicle)基类,具有MaxSpeed、Weight等成员变量,Run、Stop等成员函数,由此派生出自行车类(bicycle),汽车类(motocar)类,自行车类有高度等属性,汽车

class function:类函数

这个关键字在C 上加上类变量上,则是类全局变量(在Delphi中好像只有类函数(class Function)也没有类变量吧?这个就不太清楚了). 虽说是类全局变量,但也可以作为是普通全局变量使用. 这个关键字加在C++的类成员函数上则声明一个类静态函数(Delphi则是class Function).

comp:计算机

设计一个学生类(Cstu),它具有私有数据成员:注册号(num)、姓名(name)、数学(math)、外语(eng)和计算机(comp)课程的成绩. 具有的公有成员函数是求三门课总成绩的函数sum;显示学生数据信息的函数display;设置学生数据信息的函数setdata.

declaration:说明

一般函数指针的长度为4个字节(32位),而类的成员函数指针的长度随类的定义与否、类的继承种类和关系而变,从无继承关系类(Test3)的4字节(32位)到有虚继承关系类(VirtualInheritance)(Test4)的12字节(96位),仅有说明(declaration)没有定义的类(Te

class declaration:类声明

类声明,类实现:在声明C++ 类时一般不定义成员函数,这叫类声明(class declaration),是ADT的一种具体表示,方法的具体定义在独立于声明之外的类实现(class implementation)中给出.

friend:友元

4.6 友元在 C++中 友元 ( friend) 函数允许在类外中 友元( ) 访问该类中的任何成员, 访问该类中的任何成员 , 就象成员函数一 友元函数用关键字friend说明.

data member:数据成员

的全部对象提供了统一的抽象描述.图 数据成员(data member) member) 数据成员( 函数成员(function member ) 函数成员( 3.1.1. 类的定义 1. 简单定义 class 类名 { [private:] 私有成员说明 public: 公有成员说明 };

data member:成员数据

第二种:可以定义初始化成员列表(Initializer list)来初始化成员数据(data member). C++初始化类的成员,不但可以用构造函数(constructor)完成,而且可以用初始化类成员列表来完成. MFC大量用到此方法. 例如有些初学者可能不大理解如下代码:1.

Meuse Valley:默兹河流域

1053methodn. 方法,办法; n. 类函数,类成员函数(计算机) | 1054Meuse Valley默兹河流域 | 1055Michigann. 密西根州

overriding:超越

成员函数IsDraggable()和IsDropTarget()都定义为虚函数,所以在需要对可拖动特性和可释放特性进行更为复杂的判断时,用户可以在类CBitmapTree的派生类中超越(overriding)该函数.