代码搜索:Classes
找到约 10,000 项符合「Classes」的源代码
代码结果 10,000
www.eeworm.com/read/306033/13754771
pc c_classes.pc
using Classes;
TList L = new TList();
L.Add(2);
L.Add(new TObject());
L.Add(5);
L.Add(7);
for (int I = 0; I < L.Count; I++)
println L[I];
TStringList SL = new TStringList();
with
www.eeworm.com/read/306033/13754785
pb basic_classes.pb
Imports Classes
Dim I As Integer
Dim L As TList = New TList()
Dim SL As TStringList = New TStringList()
L.Add(2)
L.Add(New TObject())
L.Add(5)
L.Add(7)
For I = 0 to L.Count - 1
printl
www.eeworm.com/read/306033/13754792
pp pascal_classes.pp
program Demo;
uses
Classes;
var
I: Integer;
L: TList;
SL: TStringList;
begin
L := TList.Create;
SL := TStringList.Create;
L.Add(2);
L.Add(TObject.Create);
L.Add(5);
www.eeworm.com/read/139332/5799925
h interface_classes.h
// Copyright (c) 1997-2000 Utrecht University (The Netherlands),
// ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany),
// INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-W
www.eeworm.com/read/136989/5836890
h concrete_classes.h
// concrete_classes.h,v 1.2 2003/03/12 16:17:51 parsons Exp
// ============================================================================
//
// = LIBRARY
// TAO/tests/Param_Test
//
// = F