代码搜索:reference

找到约 10,000 项符合「reference」的源代码

代码结果 10,000
www.eeworm.com/read/470936/6902109

cpp stdafx.cpp

// stdafx.cpp : source file that includes just the standard includes // testPcap.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx.
www.eeworm.com/read/470995/6903102

vbp studentfiles.vbp

Type=Exe Form=FrmMain.frm Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#C:\WINDOWS\system32\STDOLE2.TLB#OLE Automation Module=Const; Modules\Const.bas Module=DbFunc; Modules\DbFunc.bas
www.eeworm.com/read/471001/6903145

vbp 课堂实训2.vbp

Type=Exe Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\..\WINDOWS\system32\Stdole2.tlb#OLE Automation Form=browse.frm Form=AddDel.frm Reference=*\G{00000205-0000-0010-8000-
www.eeworm.com/read/471050/6904534

csproj serverinfo.csproj

 Debug
www.eeworm.com/read/470631/6905237

csproj server.csproj

 Debug
www.eeworm.com/read/470637/6905408

vbp book.vbp

Type=Exe Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#C:\WINDOWS\system32\stdole2.tlb#OLE Automation Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#C:\Program Files\Common Fi
www.eeworm.com/read/470639/6905452

vbp 工程1.vbp

Type=Exe Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\WINDOWS\system32\stdole2.tlb#OLE Automation Form=图书类别管理.frm Object={67397AA1-7FB1-11D0-B148-00A0C922E820}#6.0#0; MSADO
www.eeworm.com/read/470762/6908156

+---

Type=Exe Form=考勤信息.frm Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\..\WINDOWS\System32\stdole2.tlb#OLE Automation Object={00028C01-0000-0000-0000-000000000046}#1.0#0; DBGR
www.eeworm.com/read/470800/6908595

cpp cubes.cpp

// cubes.cpp -- regular and reference arguments #include double cube(double a); double refcube(double &ra); int main () { using namespace std; double x = 3.0; cout
www.eeworm.com/read/470800/6908603

cpp firstref.cpp

// firstref.cpp -- defining and using a reference #include int main() { using namespace std; int rats = 101; int & rodents = rats; // rodents is a reference cout