代码搜索:explicit

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

代码结果 10,000
www.eeworm.com/read/158416/5597206

bas genmod.bas

Attribute VB_Name = "GenMod" Option Explicit 'use for global variable Public GlobalPath As String Public TableName As String Public RecordNo As Integer
www.eeworm.com/read/154133/5640310

bas t分布分位数m1.bas

Attribute VB_Name = "modCall" Option Explicit '调用计算t分布分位数的子程序 Sub Main() Dim I As Integer, TT As Double, p As Double, d As Double Dim sngTT As Single For I = 1 To 20 PT_
www.eeworm.com/read/154133/5640313

bas 泊松分布m1.bas

Attribute VB_Name = "modParameter" '泊松分布 Option Explicit '数组A保存计算结果 Public A() As Double 'n:试验次数 'p:一次试验中事件A出现的概率 'x:n次试验中事件A出现的次数 Public n As Integer, p As Single, x As Integer
www.eeworm.com/read/154133/5640333

bas f分布分位数m1.bas

Attribute VB_Name = "modCall" Option Explicit '调用计算F分布分位数的子程序 Sub Main() Dim I As Integer, FF As Double Dim sngF As Single For I = 1 To 5 PF_DIST 1, I, 0.05, FF '调用计算F分
www.eeworm.com/read/154133/5640344

bas 正态分布m1.bas

Attribute VB_Name = "modCall" Option Explicit '调用计算正态分布函数的子程序 Sub Main() Dim x, F For x = 1 To 5 Norm x, F '调用计算正态分布函数的子程序 Debug.Print "正态偏离点 x =", x, "下侧概率 F =", F
www.eeworm.com/read/154133/5640351

bas 正态分布图m1.bas

Attribute VB_Name = "modCall" Option Explicit '调用计算正态分布函数的子程序 Sub Main() Dim I, P For I = 1 To 5 Norm I, P '调用计算正态分布函数的子程序 Debug.Print "正态偏离点u=", I, "下侧概率p=", P
www.eeworm.com/read/154133/5640364

bas 二项式分布m1.bas

Attribute VB_Name = "modParameter" '二项式分布 Option Explicit '数组A保存计算结果 Public A() As Double 'n:试验次数 'p:一次试验中事件A出现的概率 'x:n次试验中事件A出现的次数 Public n As Integer, p As Single, x As Integer
www.eeworm.com/read/471374/6890828

def class_out.def

; Class_Out.def : Declares the module parameters for the DLL. LIBRARY "Class_Out" DESCRIPTION 'Class_Out Windows Dynamic Link Library' EXPORTS ; Explicit exports can go here
www.eeworm.com/read/471374/6890838

def func_out.def

; Func_Out.def : Declares the module parameters for the DLL. LIBRARY "Func_Out" DESCRIPTION 'Func_Out Windows Dynamic Link Library' EXPORTS ; Explicit exports can go here
www.eeworm.com/read/195345/8162764

txt vba13-3.txt

Option Explicit Dim m_blnMouseDown As Boolean Dim m_pPoint As IPoint