代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/121010/14775465
h jconfig.h
#define HAVE_PROTOTYPES
#define HAVE_UNSIGNED_CHAR
#define HAVE_UNSIGNED_SHORT
#undef CHAR_IS_UNSIGNED
#define HAVE_STDDEF_H
#define HAVE_STDLIB_H
#undef NEED_BSD_STRINGS
#undef NEED_SYS_TYPES_H
#unde
www.eeworm.com/read/175226/9555027
cpp list0807.cpp
// Listing 8.7 - Pointers as data members
// accessed with -> operator
#include
class SimpleCat
{
public:
SimpleCat();
~SimpleCat();
int GetAge() const { return *
www.eeworm.com/read/175226/9555166
cpp list0911.cpp
//Listing 9.11 - Passing pointers to objects
#include
using namespace std;
class SimpleCat
{
public:
SimpleCat();
SimpleCat(SimpleCat&);
~SimpleCat();
www.eeworm.com/read/199757/7824375
h stddef.h
/************************************************************************
Standard definitions.
prtdiff_t signed integral type of result of subtracing two pointers
size_t unsigned int
www.eeworm.com/read/199077/7889931
cpp hour15_2.cpp
// Listing 15.4 - An array of pointers to objects
#include
class CAT
{
public:
CAT() { itsAge = 1; itsWeight=5; } // default constructor
~CAT() {}
www.eeworm.com/read/199077/7889978
cpp hour15_1.cpp
// Listing 15.4 - An array of pointers to objects
#include
class CAT
{
public:
CAT() { itsAge = 1; itsWeight=5; } // default constructor
~CAT() {}
www.eeworm.com/read/199075/7890172
cpp arrayonheap.cpp
// Listing 15.4 - An array of pointers to objects
#include
class CAT
{
public:
CAT() { itsAge = 1; itsWeight=5; } // default constructor
~CAT() {}
www.eeworm.com/read/139175/13185543
h stddef.h
/************************************************************************
Standard definitions.
prtdiff_t signed integral type of result of subtracing two pointers
size_t unsigned int
www.eeworm.com/read/312169/13616857
cpp arrayonheap.cpp
// Listing 15.4 - An array of pointers to objects
#include
class CAT
{
public:
CAT() { itsAge = 1; itsWeight=5; } // default constructor
~CAT() {}
www.eeworm.com/read/253866/12181187
cpp list0807.cpp
// Listing 8.7 - Pointers as data members
// accessed with -> operator
#include
class SimpleCat
{
public:
SimpleCat();
~SimpleCat();
int GetAge() const { return *