代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/155858/11842744
cpp 4elist1306.cpp
// Listing 13.6 - An array of pointers to objects
#include
using namespace std;
class CAT
{
public:
CAT() { itsAge = 1; itsWeight=5; }
~CAT() {}
www.eeworm.com/read/253866/12181076
cpp list1306.cpp
// Listing 13.6 - An array of pointers to objects
#include
using namespace std;
class Cat
{
public:
Cat() { itsAge = 1; itsWeight=5; }
~Cat() {}
www.eeworm.com/read/220998/14780434
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/220998/14780497
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/220998/14780543
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/489223/1225824
sgml arrays_pointer.sgml
Pointer Arrays
arrays of pointers to any type of data, which grow automatically as new
elements are added
www.eeworm.com/read/482302/1289117
h lvimgprocstatus.h
#ifndef LvImgProcStatusH
#define LvImgProcStatusH
/** @defgroup StatusDefinitions Status definitions. */
//@{
/** Invalid pointer. One of the pointers used by the function is NULL or invalid.
www.eeworm.com/read/470720/1447868
c parse2.c
// Bug: g++ doesn't understand constructor syntax for pointers.
// Build don't link:
void f () {
char * p (0);
}
www.eeworm.com/read/470693/1459814
c parse2.c
// Bug: g++ doesn't understand constructor syntax for pointers.
// Build don't link:
void f () {
char * p (0);
}
www.eeworm.com/read/240162/4583051
c parse2.c
// { dg-do assemble }
// Bug: g++ doesn't understand constructor syntax for pointers.
void f () {
char * p (0);
}