代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/405333/11465061
h purge.h
//: :purge.h
// From "Thinking in C++, 2nd Edition, Volume 2"
// by Bruce Eckel & Chuck Allison, (c) 2003 MindView, Inc.
// Available at www.BruceEckel.com.
// Delete pointers in an STL sequence c
www.eeworm.com/read/403014/11523734
cpp functiontable.cpp
//: C03:FunctionTable.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Using an array of pointers
www.eeworm.com/read/259220/11814512
cpp functiontable.cpp
//: C03:FunctionTable.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Using an array of pointers
www.eeworm.com/read/155858/11843018
cpp 4elist1509.cpp
// Listing 15.9.
// Using typedef to make pointers to functions more readable
#include
using namespace std;
void Square (int&,int&);
void Cube (int&, int&);
void Swap (int&, int
www.eeworm.com/read/153678/12013233
cpp wrapped.cpp
//: C23:Wrapped.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Safe, atomic pointers
#in
www.eeworm.com/read/153678/12013548
cpp voidrtti.cpp
//: C24:Voidrtti.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// RTTI & void pointers
#in
www.eeworm.com/read/340916/12124121
cpp ex4_06.cpp
// Ex4_06.cpp
// Initializing pointers with strings
#include
using std::cin;
using std::cout;
using std::endl;
int main()
{
char* pstr1 = "Robert Redford";
char* pstr2 = "H
www.eeworm.com/read/253866/12181334
cpp list1509.cpp
// Listing 15.9.
// Using typedef to make pointers to functions more readable
#include
using namespace std;
void Square(int&,int&);
void Cube(int&, int&);
void Swap(int&, int &);
www.eeworm.com/read/226560/14458891
cpp functiontable.cpp
//: C03:FunctionTable.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Using an array of pointers
www.eeworm.com/read/123453/14630646
h wshash.h
/*
*
* wshash.h
*
* Author: Markku Rossi
*
* Copyright (c) 1999-2000 WAPIT OY LTD.
* All rights reserved.
*
* A mapping from null-terminated strings to `void *' pointers.
*
*