代码搜索:Interface
找到约 10,000 项符合「Interface」的源代码
代码结果 10,000
www.eeworm.com/read/366702/2872526
adb interface2.adb
-- { dg-do run }
procedure interface2 is
package Types is
type Iface is synchronized interface;
type Any_Iface is access all Iface'Class;
--
protected type T_PO (S : Integer) is ne
www.eeworm.com/read/366702/2872532
adb interface3.adb
-- { dg-do run }
procedure interface3 is
--
package Pkg is
type Foo is interface;
subtype Element_Type is Foo'Class;
--
type Element_Access is access Element_Type;
t
www.eeworm.com/read/366702/2872597
ads gen_interface.ads
-- { dg-do compile }
with gen_interface_p;
package gen_interface is
type T is interface;
procedure P (Thing: T) is abstract;
package NG is new gen_interface_p (T, P);
end;
www.eeworm.com/read/366702/2872726
adb interface4.adb
-- { dg-do compile }
procedure interface4 is
generic
type I1 is interface;
type I2 is limited interface;
type I3 is interface and I1;
type I4 is limited interface an
www.eeworm.com/read/366702/2872758
adb interface1.adb
-- { dg-do run }
with System;
procedure Interface1 is
package Pkg is
type I1 is interface;
type Root is tagged record
Data : string (1 .. 300);
end record;
type DT
www.eeworm.com/read/366702/2872760
adb interface_conv.adb
-- { dg-do run }
procedure Interface_Conv is
package Pkg is
type I1 is interface;
procedure Prim (X : I1) is null;
type I2 is interface;
procedure Prim (X : I2) is null;
www.eeworm.com/read/366702/2872887
m interface-1.m
#include "interface-1.h"
@implementation TestClass
+ (int) test
{
return 0;
}
@end
int main (void)
{
return [TestClass test];
}
www.eeworm.com/read/361993/2939901
h abilityupdater_interface.h
// AbilityUpdater_Interface.h: interface for the CAbilityUpdater_Interface class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_ABILITYUPDATER_INTERFA
www.eeworm.com/read/361993/2939914
cpp abilityupdater_interface.cpp
// AbilityUpdater_Interface.cpp: implementation of the CAbilityUpdater_Interface class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Ab