代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/229812/4737980
chk diag386.chk
File: ..\diagnose\source\diag0077.c
(22,17): Error! E541: pointers to class members reference different object types
source conversion type is "int stdcall (x379::S::* )( int )"
target conve
www.eeworm.com/read/229812/4738012
chk diag386.chk
File: source\diag0077.c
(22,17): Error! E541: pointers to class members reference different object types
source conversion type is 'int stdcall (x379::S::* )( int )'
target conversion type is '
www.eeworm.com/read/229812/4752446
gml winfun16.gml
.chap *refid=winfn16 Special Windows API Functions
.*
.np
.ix 'Windows 3.x extender' 'special functions'
.ix 'API special functions'
On rare occasions, you want to use 16-bit far pointers directl
www.eeworm.com/read/224327/4804511
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/190666/5172892
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/190666/5174821
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 =
www.eeworm.com/read/190666/5175416
c 900213_02.c
// g++ 1.36.1 bug 900213_02
// The following erroneous code causes g++ to abort.
// Cfront 2.0 passes this test.
// keywords: abort, member pointers, operator*
struct struct0 {
int data_member;
www.eeworm.com/read/190666/5175455
c 900212_03.c
// g++ 1.36.1 bug 900212_03
// g++ segfaults on any attempt to use the ->* operator.
// Cfront 2.0 passes this test.
// keywords: member pointers, operator->*
struct struct0 {
int data_member;
www.eeworm.com/read/190666/5175808
c pmftemp.c
// PRMS Id: 4484 (bug 1)
// Bug: g++ does not support templates involving method pointers.
// Build don't link:
struct A {
void f ();
};
template void
f (void (T::*p)()) // gets bogus e
www.eeworm.com/read/180222/5288330
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