代码搜索:Nested
找到约 7,462 项符合「Nested」的源代码
代码结果 7,462
www.eeworm.com/read/470720/1450153
m nested-3.m
/* Contributed by Nicola Pero - Fri Mar 9 19:39:15 CET 2001 */
#include
/* Test defining a nested function inside a method */
@interface Test
{
Class isa;
}
+ (int) test;
@end
@imp
www.eeworm.com/read/470713/1453271
java nested_with_ctor.java
// Class nested_with_ctor
// Generated on Mon Jan 31 18:31:47 PST 2000
// The nested class contains explicit constructors. Their argument
// lists should be augmented with the alias initializer values
www.eeworm.com/read/470713/1453339
out nested_with_ctor.out
Testing class `nested_with_ctor'...
Yikes!321
(int)123
www.eeworm.com/read/470693/1456907
c nested2.c
template class CO {
class CI1 {
class CI2;
};
};
template
class CO::CI1::CI2 {};
www.eeworm.com/read/470693/1457166
c nested3.c
// Build don't link:
// Origin: Chip Salzenberg
class Foo {
public:
class Bar;
};
class Foo::Bar {
public:
Bar() {}
};
www.eeworm.com/read/470693/1457338
c nested4.c
// Build don't link:
//
// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 10 Aug 2000
// bug 372 We ICE'd on the out-of-class definition
www.eeworm.com/read/470693/1457400
c nested1.c
// Build don't link:
struct C
{
struct D
{
};
};
struct E
{
C& c;
void g();
};
void E::g()
{
c.D().f(); // ERROR - no matching function
}
www.eeworm.com/read/470693/1457578
c nested2.c
// Build don't link:
// by Bert Bril
struct M1 {
struct I {};
};
struct M2 {
struct I {};
struct J : virtual public M
www.eeworm.com/read/470693/1457636
c nested1.c
// Build don't link:
struct A {
struct B {
typedef long T;
int i;
};
};
struct C {
struct B {
typedef float T;
int i;
};
};
C::B::T a;
www.eeworm.com/read/470693/1458090
c nested1.c
// Build don't link:
template
struct X
{
T1 a;
struct Y
{
T2 x;
Y (T2 _x) { x=_x; }
};
};
template
struct X
{
T1 a;
struct Y
{
int