代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/339800/3295054
cpp pr06014.cpp
////////////////////////////////////////
// File Name: pr06014.cpp
////////////////////////////////////////
#include
// An array of char pointers initialized with names.
char* Names[
www.eeworm.com/read/366702/2881599
c 20040409-1.c
/* This tests to make sure that the attribute noreturn
can be used on function pointers. */
int (*temp) (void) __attribute__((noreturn));
www.eeworm.com/read/195157/8171150
cpp smartptrs.cpp
//------------------------------------
// SmartPtrs.cpp
// Smart pointers to objects
// (c) Bartosz Milewski, 1996
//------------------------------------
#include "smartptrs.h"
void PtrRe
www.eeworm.com/read/335824/12495596
cpp smartptrs.cpp
//------------------------------------
// SmartPtrs.cpp
// Smart pointers to objects
// (c) Bartosz Milewski, 1996
//------------------------------------
#include "smartptrs.h"
void PtrRe
www.eeworm.com/read/291714/8402146
pas mediaplayer9_tlb.pas
{$WRITEABLECONST ON}
{$TYPEDADDRESS OFF} // Unit must be compiled without type-checked pointers.
unit MediaPlayer9_TLB;
// *********************************************************************
www.eeworm.com/read/291714/8402304
pas webbrowser4_tlb.pas
{$WRITEABLECONST ON}
{$TYPEDADDRESS OFF} // Unit must be compiled without type-checked pointers.
unit WebBrowser4_TLB;
// **********************************************************************
www.eeworm.com/read/175226/9555135
cpp list0910.cpp
//Listing 9.10 - Passing pointers to objects
#include
using namespace std;
class SimpleCat
{
public:
SimpleCat (); // constructor
SimpleCat(SimpleCa
www.eeworm.com/read/436097/7776658
pas mediaplayer9_tlb.pas
{$WRITEABLECONST ON}
{$TYPEDADDRESS OFF} // Unit must be compiled without type-checked pointers.
unit MediaPlayer9_TLB;
// *********************************************************************
www.eeworm.com/read/436097/7776697
pas webbrowser4_tlb.pas
{$WRITEABLECONST ON}
{$TYPEDADDRESS OFF} // Unit must be compiled without type-checked pointers.
unit WebBrowser4_TLB;
// **********************************************************************
www.eeworm.com/read/199075/7890386
cpp datamemberptr.cpp
// Listing 10.3
// Pointers as data members
#include
class SimpleCat
{
public:
SimpleCat();
~SimpleCat();
int GetAge() const { return *itsAge; }