代码搜索:INTEGER
找到约 10,000 项符合「INTEGER」的源代码
代码结果 10,000
www.eeworm.com/read/138026/13272251
h integer.h
www.eeworm.com/read/324119/13284356
cpp integer.cpp
/*
*
*
*
*/
#include
#include "integer.h"
using namespace std;
//
//
//
Integer::Integer(long i): Item()
{
type = INTEGER;
value = i;
}
//
//
//
Integer::~Integer()
{
}
//
//
//
l
www.eeworm.com/read/324119/13284485
h integer.h
/*
*
*
*
*/
#ifndef __INTEGER_H
#define __INTEGER_H
#include "item.h"
class Integer: public Item
{
private:
long value;
public:
Integer(long i);
~Integer();
// Virtual Methods
www.eeworm.com/read/137548/13313036
h integer.h
//: C12:Integer.h
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Non-member overloaded operators
#
www.eeworm.com/read/137548/13313046
cpp integer.cpp
//: C12:Integer.cpp {O}
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Implementation of overloaded
www.eeworm.com/read/137504/13319064
class integer.class
www.eeworm.com/read/323757/13321446
c integer.c
/*
* arbitrary precision integers
* Copyright (c) 2004 Michael Niedermayer
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the
www.eeworm.com/read/323757/13321450
h integer.h
/*
* arbitrary precision integers
* Copyright (c) 2004 Michael Niedermayer
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the
www.eeworm.com/read/319883/13440417
h integer.h
// Integer.h Integer class definition
#ifndef INTEGER_H
#define INTEGER_H
#include
using std::cout;
using std::endl;
class Integer {
public:
Integer (int arg = 0) : x(arg) {
www.eeworm.com/read/319883/13440420
h integer.h
// Integer.h Integer class definition
#ifndef INTEGER_H
#define INTEGER_H
#include
using std::cout;
using std::endl;
class Integer {
public:
Integer (int arg = 0) : x(arg) {