代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/240162/4583214
c pmf3.c
// { dg-do assemble }
// From: enewton@uunet.uu.NET
// Subject: g++ 2.5.8: cannot cast member function pointers
// Date: 27 Jan 1994 01:22:56 -0500
struct A {
void f(char);
void g(int);
};
typede
www.eeworm.com/read/233448/4675093
c ptrmem1.c
// { dg-do assemble }
// GROUPS passed pointers-to-members
class my_class
{
public:
typedef void func_type (int num);
my_class (int num, func_type* proc);
void dispatch (void);
private:
int
www.eeworm.com/read/233448/4676033
c pmf3.c
// { dg-do assemble }
// From: enewton@uunet.uu.NET
// Subject: g++ 2.5.8: cannot cast member function pointers
// Date: 27 Jan 1994 01:22:56 -0500
struct A {
void f(char);
void g(int);
};
typede
www.eeworm.com/read/209559/4968982
h err.h
#ifndef _LINUX_ERR_H
#define _LINUX_ERR_H
#include
#include
/*
* Kernel pointers have redundant information, so we can use a
* scheme where we can return either a
www.eeworm.com/read/190666/5174881
c ptrmem1.c
// Build don't link:
// GROUPS passed pointers-to-members
class my_class
{
public:
typedef void func_type (int num);
my_class (int num, func_type* proc);
void dispatch (void);
private:
int _
www.eeworm.com/read/190666/5175827
c pmf3.c
// From: enewton@uunet.uu.NET
// Subject: g++ 2.5.8: cannot cast member function pointers
// Date: 27 Jan 1994 01:22:56 -0500
// Build don't link:
struct A {
void f(char);
void g(int);
};
typedef
www.eeworm.com/read/340665/3275537
c ptrmem1.c
// Build don't link:
// GROUPS passed pointers-to-members
class my_class
{
public:
typedef void func_type (int num);
my_class (int num, func_type* proc);
void dispatch (void);
private:
int _
www.eeworm.com/read/340665/3276481
c pmf3.c
// From: enewton@uunet.uu.NET
// Subject: g++ 2.5.8: cannot cast member function pointers
// Date: 27 Jan 1994 01:22:56 -0500
// Build don't link:
struct A {
void f(char);
void g(int);
};
typedef
www.eeworm.com/read/337546/3329358
c setup.c
/*
* linux/arch/mips/tx4938/toshiba_rbtx4938/setup.c
*
* Setup pointers to hardware-dependent routines.
* Copyright (C) 2000-2001 Toshiba Corporation
*
* 2003-2005 (c) MontaVista Software, Inc.
www.eeworm.com/read/326711/3469959
cpp fig24_05.cpp
// Fig. 24.5: fig24_05.cpp
// Aiming base-class and derived-class pointers at base-class
// and derived-class objects, respectively.
#include
using std::cout;
using std::endl;
using s