代码搜索:pointers

找到约 4,056 项符合「pointers」的源代码

代码结果 4,056
www.eeworm.com/read/224612/14580302

cpp ex4_06.cpp

// EX4_06.CPP // Initializing pointers with strings #include using namespace std; int main() { char* pstr1 = "Robert Redford"; char* pstr2 = "Hopalong Cassidy"; char* pst
www.eeworm.com/read/122674/14676218

h longrun.h

#ifndef LONG_RUNS #define LONG_RUNS // include the class PQueue for PQ1 and PQ2 #include "pqueue.h" template class LongRunFilter { private: // pointers that identify the
www.eeworm.com/read/212171/15165021

html tut4-4.html

C++ Tutorial: 4.4, Polymorphism
www.eeworm.com/read/208576/15243858

cpp fig08_29.cpp

// Fig. 8.29: fig08_29.cpp // Demonstrating an array of pointers to functions. #include using std::cout; using std::cin; using std::endl; // function prototypes -- each function per
www.eeworm.com/read/10438/185770

cpp iosptrs.cpp

// iosptrs -- iostream object pointers for Microsoft #include #include _STD_BEGIN #if defined(_M_CEE) && !defined(_M_CEE_MIXED) #error This file cannot be built /clr:pure
www.eeworm.com/read/16910/702484

h comip.h

/*** * comip.h - Native C++ compiler COM support - COM interface pointers header * * Copyright (C) 1996-1997 Microsoft Corporation * All rights reserved. * ****/ #if _MSC_VER > 1000 #pragma
www.eeworm.com/read/26953/861439

h comip.h

/*** * comip.h - Native C++ compiler COM support - COM interface pointers header * * Copyright (C) 1996-1997 Microsoft Corporation * All rights reserved. * ****/ #if _MSC_VER > 1000 #pragma
www.eeworm.com/read/475965/1374260

c names1.c

/* names1.c -- uses pointers to a structure */ #include #include struct namect { char fname[20]; char lname[20]; int letters; }; void getinfo(struct namect
www.eeworm.com/read/470917/1441340

h libc-vdso.h

/* Resolve function pointers to VDSO functions. Copyright (C) 2005, 2007 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can re
www.eeworm.com/read/470720/1444700

c mangle5.c

// Test mangling of pointers to cv-qualified member functions struct A; void f (void (A::*)() const) {} // { dg-final { scan-assembler "\n_?_Z1fM1AKFvvE\[: \t\n\]" } }