代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/123453/14631073
c wshash.c
/*
*
* wshash.c
*
* Author: Markku Rossi
*
* Copyright (c) 1999-2000 WAPIT OY LTD.
* All rights reserved.
*
* A mapping from null-terminated strings to `void *' pointers.
*
*
www.eeworm.com/read/122684/14674970
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/122684/14675194
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/220998/14780420
cpp hour20_2.cpp
// Listing 20.6 arrays of pointers to functions
#include
void Square (int&,int&);
void Cube (int&, int&);
void Swap (int&, int &);
void GetVals(int&, int&);
void Prin
www.eeworm.com/read/120923/14783046
h purge.h
//: :purge.h
// From "Thinking in C++, 2nd Edition, Volume 2"
// by Bruce Eckel & Chuck Allison, (c) 2001 MindView, Inc.
// Available at www.BruceEckel.com.
// Delete pointers in an STL sequence c
www.eeworm.com/read/210671/15193987
cpp fig05_28.cpp
// Fig. 5.28: fig05_28.cpp
// Demonstrating an array of pointers to functions
#include
using std::cout;
using std::cin;
using std::endl;
void function1( int );
void function2( in
www.eeworm.com/read/209853/15212740
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/475965/1374255
c func_ptr.c
// func_ptr.c -- uses function pointers
#include
#include
#include
char showmenu(void);
void eatline(void); // read through end of line
void show(void (*
www.eeworm.com/read/470720/1446757
c parsing9.c
// Build don't link:
// GROUPS passed parsing
// From: Jason Merrill
// Date: Fri, 13 Aug 93 12:49:11 PDT
// Subject: 2.4.5 won't compile array of pointers to functions return