代码搜索:ptr

找到约 10,000 项符合「ptr」的源代码

代码结果 10,000
www.eeworm.com/read/117181/6110520

cc member-ptr.cc

extern "C" { #include } class A { public: A(); int foo (int x); int bar (int y); virtual int baz (int z); char c; int j; int jj; static int s; }; class B { public: sta
www.eeworm.com/read/172424/6301681

c demo-ptr.c

// POINTERS AND INDEXED TABLES #pragma chip PIC18C252 char tab1[10]; char tab2[10]; bank2 uns24 tu2[10]; bank3 uns24 tu3[10]; uns24 *px; void pointers( void) { // p1 is 8 bit
www.eeworm.com/read/494272/6380991

h ptr_tag.h

www.eeworm.com/read/488916/6479549

bmp varbmp_ptr.bmp

www.eeworm.com/read/488496/6488168

cpp dbl_ptr.cpp

/* * This file contains code from "C++ Primer, Fourth Edition", by Stanley B. * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the * copyright and warranty notices given in that
www.eeworm.com/read/488496/6488173

cpp ptr_traversal.cpp

/* * This file contains code from "C++ Primer, Fourth Edition", by Stanley B. * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the * copyright and warranty notices given in that
www.eeworm.com/read/488496/6488289

cpp value-ptr.cpp

#include using std::ostream; using std::cout; using std::endl; #include class HasPtr { public: // no point to passing a pointer if we're going to copy it anyway //
www.eeworm.com/read/488496/6488291

cpp smart-ptr.cpp

#include using std::ostream; using std::cout; using std::endl; #include #include using std::size_t; //private class for use by HasPtr only class U_Ptr { friend
www.eeworm.com/read/488496/6488292

cpp plain-ptr.cpp

#include using std::ostream; using std::cout; using std::endl; #include // class that has a pointer member that behaves like a plain pointer class HasPtr { public: frie
www.eeworm.com/read/488496/6488295

cpp value-ptr.cpp

/* * This file contains code from "C++ Primer, Fourth Edition", by Stanley B. * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the * copyright and warranty notices given in that