代码搜索:explicit

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

代码结果 10,000
www.eeworm.com/read/117927/14896428

def hotkey.def

; hodll.def : Declares the module parameters for the DLL. LIBRARY "hotkey" DESCRIPTION 'hotkey Windows Dynamic Link Library' SECTIONS SHARD_DATA Read Write Shared EXPORTS ; Ex
www.eeworm.com/read/164520/5489400

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/164520/5489403

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/164520/5489423

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/164520/5489434

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/164520/5489441

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/164520/5489454

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/163892/5505955

def mfc_com.def

; MFC_Com.def : Declares the module parameters for the DLL. LIBRARY "MFC_COM" ;DESCRIPTION 'MFC_COM Windows CE Dynamic Link Library' EXPORTS ; Explicit exports can go here DllCanUn
www.eeworm.com/read/162614/5522010

c t114.c

// { dg-do assemble } // GROUPS passed niklas explicit-construct struct A { A(); }; struct B { B(A&); }; B b(A());
www.eeworm.com/read/162614/5531233

c reg-vol-struct-1.c

/* Test cases of structures with volatile fields declared register: should be allowed unless register name given but explicitly taking the address forbidden. */ /* Origin: Joseph Myers