代码搜索:constructing
找到约 784 项符合「constructing」的源代码
代码结果 784
www.eeworm.com/read/209853/15212900
cpp cleanup.cpp
//: C01:Cleanup.cpp
// From "Thinking in C++, Volume 2", by Bruce Eckel & Chuck Allison.
// (c) 1995-2004 MindView, Inc. All Rights Reserved.
// See source code use permissions stated in the file '
www.eeworm.com/read/206867/15287202
cpp cls_parm.cpp
#include
class base
{
protected:
int i;
public:
base(int x)
{
i=x;
cout
www.eeworm.com/read/162614/5521236
c cvt6.c
// { dg-do assemble }
// GROUPS passed conversions
// cvt file
// Message-Id:
// From: bilmes@media.mit.edu
// Subject: gcc (g++) 2.2.2 constructing nested
www.eeworm.com/read/162614/5522672
c eb15.c
// { dg-do assemble }
#include
#include
struct A {
A() {
std::cerr
www.eeworm.com/read/161438/5553610
cpp cls_parm.cpp
#include
class base
{
protected:
int i;
public:
base(int x)
{
i=x;
cout
www.eeworm.com/read/475959/6771587
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/475959/6771639
cpp 6_50.cpp
#include
using namespace std;
class Rectangle
{ int width, height;
public:
Rectangle() //需要一个无参数的构造函数
{ width = height = 0;
cout
www.eeworm.com/read/472009/6877911
cpp xt11-8.cpp
#include
using namespace std;
class A
{
public:
A(){cout
www.eeworm.com/read/395044/8198022
cpp 1.cpp
#include
#include
class Student
{
public:
Student(char*pName="no name",int ssId=0)
{
id=ssId;
strcpy(name,pName);
cout