代码搜索:Anonymous
找到约 10,000 项符合「Anonymous」的源代码
代码结果 10,000
www.eeworm.com/read/187205/8843793
cs anonymous.cs
//
// anonymous.cs: Support for anonymous methods
//
// Author:
// Miguel de Icaza (miguel@ximain.com)
//
// (C) 2003, 2004 Novell, Inc.
//
// TODO: Ideally, we should have the helper classes emited
www.eeworm.com/read/136989/5830406
idl anonymous.idl
// anonymous.idl,v 1.2 2003/11/29 17:18:44 parsons Exp
// ============================================================================
//
// = LIBRARY
// TAO/tests/IDL_Test
//
// = FILENAME
www.eeworm.com/read/409872/11308789
gif anonymous.gif
www.eeworm.com/read/209211/4981629
c anonymous.c
#include
#include
#include "httpd.h"
#include "httpsrv.h"
void
anonymous(HConnect *c)
{
if(bind(webroot, "/", MREPL) < 0){
hfail(c, HInternal);
exits(nil);
}
chdir("/");
}
www.eeworm.com/read/193422/5143776
cc anonymous.cc
#include
using namespace std;
class A{
int data;
public:
A();
A( int d );
A( int d, int n );
void show();
};
A::A()
:data(0)
{
cout