The NetBeans IDE has seen adoption snowballing over the past years, particularly with the introduction of a completely new, rewritten, slick Java editor. You’ll fnd this reference card helpful if you want to get as much Out of the Java editor as its authors intended when creating it. It lists all the keyboard shortcuts in carefully thought Out categories and it provides a thorough exposition of optimal handling of Java code in the editor, covering viewing, navigation, source handling, and refactoring. Get NetBeans IDE: http://www.netbeans.org/downloads
標簽: particularly snowballing the NetBeans
上傳時間: 2014-01-23
上傳用戶:氣溫達上千萬的
-- Hamming Decoder -- This Hamming decoder accepts an 8-bit Hamming code (produced by the encoder above) and performs single error correction and double error detection. -- download from: www.pld.com.cn & www.fpga.com.cn LIBRARY ieee USE ieee.std_logic_1164.ALL ENTITY hamdec IS PORT(hamin : IN BIT_VECTOR(0 TO 7) --d0 d1 d2 d3 p0 p1 p2 p4 dataOut : Out BIT_VECTOR(0 TO 3) --d0 d1 d2 d3 sec, ded, ne : Out BIT) --diagnostic Outputs END hamdec ARCHITECTURE ver1 OF hamdec IS BEGIN
標簽: Hamming produced Decoder decoder
上傳時間: 2017-07-15
上傳用戶:520
String int 字符串常量池 包裝類型 函數(shù)參數(shù) 值傳遞引用傳遞 的 內(nèi)存分配例子——源碼 代碼段: public static void fun_ref (Ref_test ref_Out){ Ref_test ref_in=new Ref_test() ref_in.s1="in" //ref_Out.s1="Out" ref_Out=ref_in //漏洞!!ref_Out 指向ref_in , //那么當函數(shù)退出后,ref_Out就會自動指向原來的堆!!! System.Out.println("fun_ref() ref_Out.s1="+ref_Out.s1) }
標簽: Ref_test fun_ref String public
上傳時間: 2013-12-27
上傳用戶:ls530720646
java 線程 靜態(tài)鎖,對象鎖, synchronized 是鎖方法還是鎖對象?還是鎖類?如何實現(xiàn)?? 部分代碼如下, public static Object lock=new Object() //靜態(tài)鎖,鎖類,不是鎖對象了!!所以兩個線程同時 運行兩個 TestThread 的execute( ),也可以同步?。?! public void execute(){ // synchronized(lock){ for(int i=0 i<20 i++){ try { Thread.sleep(30) } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace() } System.Out.println(Thread.currentThread().getName()+Thread.currentThread ().getName()+" "+i) } } }
上傳時間: 2017-07-15
上傳用戶:lijianyu172
fantastic j2me user interface designer for midp2.0 cldcd 1.1. Works on many phones as a generic application. This is not my own software but for those who don t know it already: check it Out. There s a super cool sample application that shows you all of the amazing possibilities for your phone.
標簽: fantastic interface designer generic
上傳時間: 2014-01-17
上傳用戶:ecooo
Two scripts are included here. 1. convsys.m - combines the state space representation of two systems connected in series. [Ao,Bo,Co,Do]=convsys(A1,B1,C1,D1,A2,B2,C2,D2) This algorithm gives the convolution of two state space representations | A1 B1 | | A2 B2 | u ==> | | ==> | | ==> y | C1 D1 | | C2 D2 | The algorithm also accepts state space objects as inputs and gives Out a state space object as Output. 2. sysfeedbk.m [Ao,Bo,Co,Do]=convsys(A1,B1,C1,D1,A2,B2,C2,D2) Gives the closed loop state space representation for two systems connected with negative feedback in the following manner. | A1 B1 | u ==> | | ==> y + o | C1 D1 | | - | | | | A2 B2 | | |= | |= | | C2 D2 | The zip file also contains checkcompatibility.m , which checks the compatibility of matrix dimensions in the system and cleanss.m which can be used to clean a state space representation.
標簽: representation included combines scripts
上傳時間: 2017-07-25
上傳用戶:semi1981
After decades of war one company, who had gained powerful supplying both sides with weaponary, steps forwards and crushes both warring factions in one swift movement. Using far superior weaponary and AI craft, the company was completely unstoppable and now no one can stand in their way. Thousands began to perish under the iron fist of the company. The people cried Out for a saviour, for someone to light this dark hour... and someone did.
標簽: supplying weaponary powerful decades
上傳時間: 2013-12-02
上傳用戶:cx111111
Enlarge java script is used to enlarge a picture in to the original size, and gives the flexibility on mouse over and mouse Out.
標簽: flexibility the original Enlarge
上傳時間: 2014-01-16
上傳用戶:ljmwh2000
In the planning stage of a GNSS-measurement campaign it is useful to compute several design para-meters in order to decide how, when and where to carry Out the measurements. The MATLAB user interface VISUAL.M enables you to compute the design parameters for any system design.
標簽: GNSS-measurement planning campaign para-met
上傳時間: 2014-01-23
上傳用戶:tuilp1a
程序:防止輸入抖動程序。 作者:趙相如 語言:C 日期:2009-04-03 聯(lián)系:zhao-xiangru@163.com 備注:注意:對單片機的輸入點都要求有防止抖動程序。 ------------------------------------------------- 程序介紹: K1、K2為按鈕,Out為輸出燈。 按下k1,經(jīng)過延時子程序,判斷是否抖動, 燈Out點亮。 按下K2,經(jīng)過延時子程序,判斷是否抖動, 燈Out熄滅。
標簽: zhao-xiangru 2009 程序 163
上傳時間: 2013-12-14
上傳用戶:yuchunhai1990