代码搜索:constructing
找到约 784 项符合「constructing」的源代码
代码结果 784
www.eeworm.com/read/320903/13416200
cpp f0917.cpp
//=====================================
// f0917.cpp
// copy constructor
//=====================================
#include
using namespace std;
//-------------------------------------
www.eeworm.com/read/131315/5940632
cc foo.cc
// Class Foo
//#pragma implementation
// We don't use header files, since we only want to see, whether the
// compiler is installed properly.
//
#if (__GNUG__ == 2)
typedef __SIZE_TYPE__ size_t;
#el
www.eeworm.com/read/101082/6244888
1 pagesize.1
.\" SCCSID: @(#)pagesize.1 8.1 9/11/90
.TH pagesize 1
.SH Name
pagesize \- print system page size
.SH Syntax
.B pagesize
.SH Description
.NXR "pagesize command"
.NXAM "getpagesize system call" "pagesi
www.eeworm.com/read/101082/6246758
1 pagesize.1
.\" SCCSID: @(#)pagesize.1 8.1 9/11/90
.TH pagesize 1
.SH Name
pagesize \- print system page size
.SH Syntax
.B pagesize
.SH Description
.NXR "pagesize command"
.NXAM "getpagesize system call" "pagesi
www.eeworm.com/read/212115/6303946
cpp f0913.cpp
//=====================================
// f0913.cpp
// copy constructor
//=====================================
#include
using namespace std;
//-------------------------------------
www.eeworm.com/read/212115/6303968
cpp f0917.cpp
//=====================================
// f0917.cpp
// copy constructor
//=====================================
#include
using namespace std;
//-------------------------------------
www.eeworm.com/read/418906/6339495
cpp xt11-8.cpp
#include
using namespace std;
class A
{
public:
A(){cout
www.eeworm.com/read/264889/11296539
cpp 6_49.cpp
#include
using namespace std;
class Rectangle
{ int width, height;
public:
Rectangle(int w, int h)
{ width = w; height = h;
cout
www.eeworm.com/read/264889/11296649
cpp 6_50.cpp
#include
using namespace std;
class Rectangle
{ int width, height;
public:
Rectangle() //需要一个无参数的构造函数
{ width = height = 0;
cout
www.eeworm.com/read/405333/11464927
cpp cleanup.cpp
//: C01:Cleanup.cpp
// From "Thinking in C++, 2nd Edition, Volume 2"
// by Bruce Eckel & Chuck Allison, (c) 2003 MindView, Inc.
// Available at www.BruceEckel.com.
// Exceptions clean up complete