代码搜索:instance
找到约 10,000 项符合「instance」的源代码
代码结果 10,000
www.eeworm.com/read/140727/5781767
cc hsrch_14.cc
// file: $isip/class/search/HierarchicalSearch/hsrch_14.cc
// version: $Id: hsrch_14.cc,v 1.23 2003/04/14 16:12:53 huang Exp $
//
// isip include files
//
#include "HierarchicalSearch.h"
// method:
www.eeworm.com/read/149876/5696200
cc derivation.cc
class A {
public:
int a;
int aa;
A()
{
a=1;
aa=2;
}
int afoo();
int foo();
};
class B {
public:
int b;
int bb;
B()
{
b=3;
www.eeworm.com/read/148694/5711639
cc derivation.cc
class A {
public:
int a;
int aa;
A()
{
a=1;
aa=2;
}
int afoo();
int foo();
};
class B {
public:
int b;
int bb;
B()
{
b=3;
www.eeworm.com/read/140704/5783847
cc mm_grow_7.cc
// file: mm_grow_7.cc
//
// isip include files
//
#include "memory_manager.h"
#include "memory_manager_constants.h"
#include
// method: grow_instance_cc
//
// arguments: none
//
// re
www.eeworm.com/read/117181/6110487
cc derivation.cc
class A {
public:
int a;
int aa;
A()
{
a=1;
aa=2;
}
int afoo();
int foo();
};
class B {
public:
int b;
int bb;
B()
{
b=3;
www.eeworm.com/read/158872/5592452
cc derivation.cc
class A {
public:
int a;
int aa;
A()
{
a=1;
aa=2;
}
int afoo();
int foo();
};
class B {
public:
int b;
int bb;
B()
{
b=3;
www.eeworm.com/read/275831/10794552
rb 07 - initializing instance variables defined by a module.rb
module Timeable
attr_reader :time_created
def initialize
@time_created = Time.now
end
def age #in seconds
Time.now - @time_created
end
end
#---
class Character
include Timeab
www.eeworm.com/read/213780/15124916