代码搜索结果

找到约 10,000 项符合 Switch 的代码

onoffswitch.java

//: exceptions/OnOffSwitch.java // Why use finally? public class OnOffSwitch { private static Switch sw = new Switch(); public static void f() throws OnOffException1,OnOffException2 {}

onoffswitch14.java

// exceptions/OnOffSwitch14.java // TIJ4 Chapter Exceptions, Exercise 14, page 476 // Show that the OnOffSwitch.java can fail by throwing a // RuntimeException inside the try block. public class

withfinally15.java

// exceptions/WithFinally15.java // TIJ4 Chapter Exceptions, Exercise 15, page 476 // Show that WithFinally.java doesn't fail by throwing a // RuntimeException inside the try block. public class

51_00_os.lnp

"main.obj", "OS_core.obj", "task_switch.obj", "UART.obj" TO "51_00_OS" RAMSIZE(256) CODE( 0X0000-0X1FFF )

carrier_gen_plcp.asv

function [out]=Carrier_gen_plcp(data,guard,ploit,length_symbol); for i=1:length_symbol temp((i-1)*128+1)=0; temp((i-1)*128+2)=0; temp((i-1)*128+3)=0; temp((i-1)*128+4)=0; tem

carrier_gen_plcp.m

function [out]=Carrier_gen_plcp(data,guard,ploit,length_symbol); for i=1:length_symbol temp((i-1)*128+1)=0; temp((i-1)*128+2)=0; temp((i-1)*128+3)=0; temp((i-1)*128+4)=0; tem

f_getfir.asv

function [b,a,m,fs,x,y,user,xm,xm_old] = f_getfir (xm,xm_old,fs,F_0,F_1,B,delta_p,delta_s,m,method,... win,user,b,a,x,y,hc_type); %F_GETFIR: Compute FIR fi

main.c

//---------------------------------------------------------------------------- // C main line //---------------------------------------------------------------------------- #include

withfinally.java

//: c09:WithFinally.java // Finally Guarantees cleanup. // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright notice in CopyRight.txt. public class WithFi

onoffswitch.java

//: c09:OnOffSwitch.java // Why use finally? // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright notice in CopyRight.txt. public class OnOffSwitch {