代码搜索:self
找到约 10,000 项符合「self」的源代码
代码结果 10,000
www.eeworm.com/read/105420/15667608
c os_task.c
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/101790/15811162
htm subject_59162.htm
序号:59162 发表者:江湖小虾米 发表日期:2003-11-06 11:22:43
主题:急,关于怎样打包水晶报表的问题。
内容:我用vc6.0/水晶报表4。6+8。0/编了一个应用程序,可我就总是弄不清楚该怎样打包。我在用InstallShield 打包的时候单独建立了一个文件夹Activex,然后把CRYSTL32.OCX和Cryenh32.o
www.eeworm.com/read/101017/15856932
cpp logscsi_kernel.cpp
/***********************************************************************
Copyright 2002 Ben Rudiak-Gould.
This program is free software; you can redistribute it and/or modify
it under the term
www.eeworm.com/read/462539/1545197
cpp treenode.cpp
#include "TreeNode.h"
//构造函数
CTreeNode* CTreeNode::NewL()
{
CTreeNode* self = NewLC();
CleanupStack::Pop(self);
return self;
}
CTreeNode* CTreeNode::NewLC()
{
CTreeNode* self = new(ELe
www.eeworm.com/read/462539/1545226
cpp treenode.cpp
#include "TreeNode.h"
//构造函数
CTreeNode* CTreeNode::NewL()
{
CTreeNode* self = NewLC();
CleanupStack::Pop(self);
return self;
}
CTreeNode* CTreeNode::NewLC()
{
CTreeNode* self = new(ELe
www.eeworm.com/read/436808/1844852
tt api.tt
[% FOREACH req = self.requires %]
[% req %]
[% END %]
[% FOREACH obj = self.objects %]
www.eeworm.com/read/365329/9869607
dc circle.dc
% Circle ctor {
struct Circle * self = super_ctor(Circle(), _self, app);
self -> rad = va_arg(* app, int);
return self;
}
% Circle draw {
%casts
printf("circle at %d,%d rad %d\n",
x(self), y(
www.eeworm.com/read/259371/4343813
txt 程嶏清单14-1.txt
sub new {
my $class = shift;
my $self = {}; # allocate new hash for object
bless($self, $class);
return $self;
}
www.eeworm.com/read/239567/4597777
py testraise.py
class fooexception(Exception):
def __init__(self, msg):
Exception.__init__(self)
print msg
def __init__(self):
Exception.__init__(self)
print "i am
www.eeworm.com/read/314941/3627490
pm asterisk.pm
package Asterisk;
require 5.004;
$VERSION = '0.08';
sub version { $VERSION; }
sub new {
my ($class, %args) = @_;
my $self = {};
$self->{configfile} = undef;
$self->{config} = {};
bless $self,