代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/426194/10275471
cpp aglext_arb_multitexture.cpp
GLboolean use_ARB_multitexture = GL_FALSE;
// Functions pointers for ARB_multitexture Extension:
PFNGLACTIVETEXTUREARBPROC glActiveTextureARB = NULL;
PFNGLCLIENTACTIVETEXTUREARBPROC glClientA
www.eeworm.com/read/426194/10275481
cpp aglext_gl_arb_multitexture.cpp
GLboolean use_ARB_multitexture = GL_FALSE;
// Functions pointers for ARB_multitexture Extension:
PFNGLACTIVETEXTUREARBPROC glActiveTextureARB = NULL;
PFNGLCLIENTACTIVETEXTUREARBPROC glClientA
www.eeworm.com/read/443900/7620776
cpp 4.10-指针传递对象.cpp
//Listing 9.10
// Passing pointers to objects
#include
class SimpleCat
{
public:
SimpleCat (); // constructor
SimpleCat(SimpleCat&); // copy constructo
www.eeworm.com/read/199077/7889771
cpp hour10_1.cpp
// Listing 10.5
// Using pointers with const methods
#include
class Rectangle
{
public:
Rectangle();
~Rectangle();
void SetLength(int length) { itsLength = le
www.eeworm.com/read/199077/7889868
cpp hour12_1b.cpp
//Listing 12.1
// Passing pointers to objects
// rename to simplecat.cpp which should be added to the project in the Borland IDE
// ^^^ This second part is *very* importan
www.eeworm.com/read/199077/7889935
cpp hour12_1a.cpp
//Listing 12.1
// Passing pointers to objects
#include
#include "simplecat.hpp"
SimpleCat FunctionOne (SimpleCat theCat);
SimpleCat* FunctionTwo (SimpleCat *theCat);
www.eeworm.com/read/199075/7890383
cpp constptr.cpp
// Listing 10.5
// Using pointers with const methods
#include
class Rectangle
{
public:
Rectangle();
~Rectangle();
void SetLength(int length) { itsLength = le
www.eeworm.com/read/199075/7890576
cpp ptrtomember.cpp
//Listing 20.9 Pointers to member functions
#include
enum BOOL {FALSE, TRUE};
class Mammal
{
public:
Mammal():itsAge(1) { }
virtual ~Mammal() { }
www.eeworm.com/read/312169/13616912
cpp constptr.cpp
// Listing 10.5
// Using pointers with const methods
#include
class Rectangle
{
public:
Rectangle();
~Rectangle();
void SetLength(int length) { itsLength = le
www.eeworm.com/read/312169/13616949
cpp ptrtomember.cpp
//Listing 20.9 Pointers to member functions
#include
enum BOOL {FALSE, TRUE};
class Mammal
{
public:
Mammal():itsAge(1) { }
virtual ~Mammal() { }