代码搜索:PTR
找到约 10,000 项符合「PTR」的源代码
代码结果 10,000
www.eeworm.com/read/277457/10637954
cpp ptr2ptr.cpp
#include
using namespace std;
int main()
{
int integer, *pointer, **ptr2ptr;
integer = 1;
pointer = &integer;
ptr2ptr = &pointer;
cout
www.eeworm.com/read/487037/6522687
cc ptr2ptr.cc
#include
using namespace std;
int main()
{
double d=123.45;
double* p = &d;
double** q = &p;
cout
www.eeworm.com/read/132069/5924596
cpp ptr2ptr_tests.cpp
/* ***** BEGIN LICENSE BLOCK *****
* Version: RCSL 1.0/RPSL 1.0
*
* Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved.
*
* The contents of this file, and the
www.eeworm.com/read/247605/4479789
cpp ptr2ptr_tests.cpp
/* ***** BEGIN LICENSE BLOCK *****
* Source last modified: $Id: ptr2ptr_tests.cpp,v 1.1.1.1.50.3 2004/07/09 01:45:54 hubbe Exp $
*
* Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights
www.eeworm.com/read/164348/5496401
cpp ptr2ptr_tests.cpp
/* ***** BEGIN LICENSE BLOCK *****
* Source last modified: $Id: ptr2ptr_tests.cpp,v 1.1.1.1.50.3 2004/07/09 01:45:54 hubbe Exp $
*
* Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Righ
www.eeworm.com/read/375190/2736394
cpp mem_func_ptr_cv_ptr_to_this.cpp
// (C) Copyright Tobias Schwinger
//
// Use modification and distribution are subject to the boost Software License,
// Version 1.0. (See http://www.boost.org/LICENSE_1_0.txt).
//-------------------
www.eeworm.com/read/290707/8466584
ptr 001.ptr
www.eeworm.com/read/381515/9088025
h ptr.h
//
// Ptr.h
// - Smart interface pointer
//
#include
//
// IPtr - Smart Interface Pointer
// Use: IPtr spIX ;
// Do not use with IUnknown; IPtr
www.eeworm.com/read/381515/9088492
h ptr.h
//
// Ptr.h
// - Smart interface pointer
//
#include
//
// IPtr - Smart Interface Pointer
// Use: IPtr spIX ;
// Do not use with IUnknown; IPtr
www.eeworm.com/read/282020/9123920