代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/221464/4829924
hpp pointer_holder.hpp
#if !defined(BOOST_PP_IS_ITERATING)
// Copyright David Abrahams 2001. Permission to copy, use,
// modify, sell and distribute this software is granted provided this
// copyright notice appears in
www.eeworm.com/read/221464/4831060
cpp is_pointer_test.cpp
// (C) Copyright John Maddock 2000.
// Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at ht
www.eeworm.com/read/193422/5143777
cc object_pointer.cc
#include
using namespace std;
class A{
int data;
public:
A( int d=0 );
void show();
};
A::A( int d )
:data(d)
{
cout
www.eeworm.com/read/193422/5143780
cpp sort_pointer.cpp
/************************************************
* 动态数组排序演示程序
* 达内,陈宗权,2006/8
************************************************/
#include
using namespace std;
int getNumber();//取得数据
www.eeworm.com/read/193422/5143794
cpp sort_pointer.cpp
/************************************************
* 动态数组排序演示程序
* 达内,陈宗权,2006/8
************************************************/
#include
using namespace std;
int getNumber();//取得数据
www.eeworm.com/read/190666/5173764
c pointer1.c
// Build don't link:
template
struct S1
{
};
template
struct S2
{
typedef T* pointer_t;
};
int f(S2::pointer_t p1, S2::pointer_t p2)
{
return (int) (p1 -
www.eeworm.com/read/190666/5176217
c a-of-s-pointer.c
#include
static struct sss{
char * f;
} a[10];
int main (void) {
printf ("++++Array of struct with pointer:\n");
printf ("size=%d,align=%d,displ-a[5]=%d,align-a[5]=%d\n",
s
www.eeworm.com/read/190666/5176238
c size-pointer.c
#include
static char *p;
int main(void)
{
printf ("+++Pointer size:\n");
printf ("%d\n", sizeof (p));
return 0;
}
www.eeworm.com/read/190666/5176316
c align-pointer.c
#include
static char *p;
int main(void)
{
printf ("+++Pointer alignment:\n");
printf ("%d\n", __alignof__ (p));
return 0;
}