代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/209853/15212595
h pstash.h
//: C13:PStash.h
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Holds pointers instead of objects
www.eeworm.com/read/209853/15212719
cpp simplestruct3.cpp
//: C03:SimpleStruct3.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Using pointers to structs
www.eeworm.com/read/34867/1046176
c xdr_ref.c
/* xdr_ref.c - XDR primitives for pointers */
/* Copyright 1984-2001 Wind River Systems, Inc. */
#include "copyright_wrs.h"
/*
modification history
--------------------
01j,05nov01,vvv fixed compil
www.eeworm.com/read/492252/1178246
c xdr_ref.c
/* xdr_ref.c - XDR primitives for pointers */
/* Copyright 1984-2001 Wind River Systems, Inc. */
#include "copyright_wrs.h"
/*
modification history
--------------------
01j,05nov01,vvv fixed compil
www.eeworm.com/read/486037/1254737
h err.h
#ifndef _LINUX_ERR_H
#define _LINUX_ERR_H
#include
/*
* Kernel pointers have redundant information, so we can use a
* scheme where we can return either an error code or a dentry
*
www.eeworm.com/read/486037/1256301
h err.h
#ifndef _LINUX_ERR_H
#define _LINUX_ERR_H
#include
/*
* Kernel pointers have redundant information, so we can use a
* scheme where we can return either an error code or a dentry
*
www.eeworm.com/read/480682/1315535
c xdr_ref.c
/* xdr_ref.c - XDR primitives for pointers */
/* Copyright 1984-2001 Wind River Systems, Inc. */
#include "copyright_wrs.h"
/*
modification history
--------------------
01j,05nov01,vvv fixed compil
www.eeworm.com/read/480145/1322295
c xdr_ref.c
/* xdr_ref.c - XDR primitives for pointers */
/* Copyright 1984-2001 Wind River Systems, Inc. */
#include "copyright_wrs.h"
/*
modification history
--------------------
01j,05nov01,vvv fixed compil
www.eeworm.com/read/470720/1445098
c ptr1.c
// Bug: catching pointers by reference doesn't work right.
extern "C" int printf (const char *, ...);
struct E {
int x;
E(int i) { x = i; };
};
int main()
{
try {
E *p = new E(5);
thr
www.eeworm.com/read/470720/1447030
c ptrmem4.c
// Build don't link:
// GROUPS passed pointers-to-members
class X {
private:
int i;
public:
X(int k) { i=k; }
int operator=(X &a) { return i = a.i; }
int operator=(int ii) { return i =