代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/231996/14212083
xml auxfns.xml
Auxiliary Functions
There are a number of abstract data types mostly only used internally by PBC.
A notable exception is the function find_mnt6_curve()
www.eeworm.com/read/128030/14318660
cpp ex10_3.cpp
// ex10_3.cpp
// sort an array of pointers to strings
#include
#include //for strcmp(), etc.
using namespace std;
const int DAYS = 7; //number of poi
www.eeworm.com/read/128030/14318685
cpp persort.cpp
// persort.cpp
// sorts person objects using array of pointers
#include
#include //for string class
using namespace std;
/////////////////////////
www.eeworm.com/read/128030/14318689
cpp ptrtostr.cpp
// ptrtostr.cpp
// an array of pointers to strings
#include
using namespace std;
const int DAYS = 7; //number of pointers in array
int main()
{
www.eeworm.com/read/227713/14417433
c iof.c
/*************************************************************************/
/* */
/* Copyright (c) 1993-2001 Accelerated
www.eeworm.com/read/225725/14521159
htm mi1.htm
More Effective C++ | Item 1: Distinguish between pointers an
www.eeworm.com/read/123847/14609907
c pptr.c
/* pptr.c: Illustrates pointers to pointers */
#include
int main() {
int i = 7, *ip = &i, **ipp = &ip;
printf("Address %p contains %d\n", ip, *ip);
printf("Address %p cont
www.eeworm.com/read/122684/14675136
cpp pmem.cpp
//: C11:Pmem.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Pointers to members
class
www.eeworm.com/read/221571/14737225
c pptr.c
/* pptr.c: Illustrates pointers to pointers */
#include
int main()
{
int i = 7, *ip = &i, **ipp = &ip;
printf("Address %p contains %d\n", ip, *ip);
printf("Address %p con
www.eeworm.com/read/121364/14758631
txt 内容介绍.txt
内容介绍
Modern C++ Design是一部重要的著作。从根本上,它展示了泛型模式或模式模板这一在C++中创建可扩充设计的功能强大的新途径--一种结合了模板和模式、你未曾梦想过但的确存在的新途径。如果你的工作涉及C++设计及编程,那么,你应该阅读本书。极力推荐...
--Herb Sutter
关于C++,还有什么没有说到的?--很多,它证明。
--节自John Vlissid ...