代码搜索:ptr
找到约 10,000 项符合「ptr」的源代码
代码结果 10,000
www.eeworm.com/read/425160/10376269
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/425160/10376282
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/161772/10376372
c ptr2.c
/* Using a pointer to call different functions. */
#include
/* The function prototypes. */
void func1(int x);
void one(void);
void two(void);
void other(void);
int main( void
www.eeworm.com/read/161772/10376472
exe ptr2.exe
www.eeworm.com/read/161772/10376491
exe ptr_math.exe
www.eeworm.com/read/161772/10376511
c ptr_math.c
/* Demonstrates using pointer arithmetic to access */
/* array elements with pointer notation. */
#include
#define MAX 10
/* Declare and initialize an integer array. */
int i_arra
www.eeworm.com/read/425160/10376688
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/425160/10376700
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/425160/10376706
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/425160/10376720
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