亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

String-include

  • 手機游戲坦克大戰import java.awt.* import javax.swing.* import java.awt.event.* import java.util.EventL

    手機游戲坦克大戰import java.awt.* import javax.swing.* import java.awt.event.* import java.util.EventListener public class HsTank2 extends JFrame { HsTank2(String title) { this.setTitle(title) this.setSize(608 , 630) this.setLocation(300 , 100) this.setBackground(Color.WHITE)

    標簽: import java awt EventL

    上傳時間: 2015-10-17

    上傳用戶:李彥東

  • This design package includes reference materials for creating a USB - PS/2 combination mouse that a

    This design package includes reference materials for creating a USB - PS/2 combination mouse that auto-detects the interface and configures itself to operate on the appropriate bus. Documentation docs - Designing a low cost CY7C63723 combination mouse.pdf - application note for this design - schematic.pdf - mouse schematic Firmware Source Files src - chip.c - include file that defines CY7C63723 constants - combi.c - main source file - combi.hex - Intel hex file for programming a CY7C63723 microcontroller - combi.lst - output listing from c-compiler for use with the CYDB debugger - macros.h - defines macros used in combi.c - ps2defs.h - defines PS/2 interface constants - usb_desc.h - defines the USB descriptors - usbdefs.h - defines USB interface constants

    標簽: combination materials reference creating

    上傳時間: 2015-10-19

    上傳用戶:784533221

  • The Engineering Vibration Toolbox is a set of educational programs written in Octave by Joseph C.

    The Engineering Vibration Toolbox is a set of educational programs written in Octave by Joseph C. Slater. Also included are a number of help files, demonstration examples, and data files containing raw experimental data. The codes include single degree of freedom response, response spectrum, finite elements, numerical integration, and phase plane analysis.

    標簽: C. Engineering educational Vibration

    上傳時間: 2013-11-29

    上傳用戶:jkhjkh1982

  • 第一章涵蓋了內建的數據型別

    第一章涵蓋了內建的數據型別,語言預先定義好的運算符、標準程序庫中那個的vector和string類、條件語句和循環語句、輸入和輸出用的iostream庫。第二章解釋函數的設計和使用;第三章涵蓋所謂的Standard Template Library;第四章講述classes機制的設計和使用過程。第五章說明如何擴展classes;第六章的重頭戲是class templates 第七章講述如何使用c++提供的異常處理機制。

    標簽: 數據

    上傳時間: 2014-02-20

    上傳用戶:zyt

  • Magenta Systems Internet Packet Monitoring Components are a set of Delphi components designed to cap

    Magenta Systems Internet Packet Monitoring Components are a set of Delphi components designed to capture and monitor internet packets using either raw sockets or the WinPcap device driver. Hardware permitting, ethernet packets may be captured and interpreted, and statistics maintained about the traffic. Uses of packet monitoring include totalling internet traffic by IP address and service, monitoring external or internal IP addresses and services accessed, network diagnostics, and many other applications. The component includes two demonstration applications, one that displays raw packets, the other that totals internet traffic. The components include various filters to reduce the number of packets that need to be processed, by allowing specific IP addresses to be ignored, LAN mask to ignore local traffic, and ignore non-IP traffic such as ARP.

    標簽: Components Monitoring components Internet

    上傳時間: 2015-10-30

    上傳用戶:水中浮云

  • 詞法分析器制作與應用 設計思想 (1)程序主體結構部分: 說明部分 %% 規則部分 %% 輔助程序部分 (2)主體結構的說明 在這里說明部分告訴我們使用的LETTER,DIGIT,

    詞法分析器制作與應用 設計思想 (1)程序主體結構部分: 說明部分 %% 規則部分 %% 輔助程序部分 (2)主體結構的說明 在這里說明部分告訴我們使用的LETTER,DIGIT, IDENT(標識符,通常定義為字母開頭的字母數字串)和STR(字符串常量,通常定義為雙引號括起來的一串字符)是什么意思.這部分也可以包含一些初始化代碼.例如用#include來使用標準的頭文件和前向說明(forward ,references).這些代碼應該再標記"%{"和"%}"之間 規則部分> 可以包括任何你想用來分析的代碼 我們這里包括了忽略所有注釋中字符的功能,傳送ID名稱和字符串常量內容到主調函數和main函數的功能. (3)實現原理 程序中先判斷這個句語句中每個單元為關鍵字、常數、運算符、界符,對與不同的單詞符號給出不同編碼形式的編碼,用以區分之。 PL/0語言的EBNF表示 <常量定義>::=<標識符>=<無符號整數> <標識符>::=<字母>={<字母>|<數字>} <加法運算符>::=+|- <乘法運算符>::=*|/ <關系運算符>::==|#|<|<=|>|>= <字母>::=a|b|…|X|Y|Z <數字>::=0|1|2|…|8|9

    標簽: LETTER DIGIT 程序

    上傳時間: 2015-11-04

    上傳用戶:zhengzg

  • 問題描述:編寫一個JAVA程序

    問題描述:編寫一個JAVA程序,用面向對象設計的方法編寫一個電話卡的類。包括卡號、密碼、余額、撥入號碼等 b)基本要求:類的屬性有卡號、密碼、余額、撥入號碼,電話卡的常用操作可以用連接電話方法、返回余額方法與通電話方法來實現。 c)方法功能描述: 構造方法(PhoneCard(卡號,密碼,余額,撥入號碼))可以完成屬性值初始化賦值,并判斷余額,余額為負就退出系統,請在構造方法中將初始時的連接置為false即表示沒有連接。 卡號long cardNumber 密碼private int password,余額double balance,撥入號碼string connectNumber boolean connected(一個布爾類型變量表示電話卡連接狀態,初始時默認沒有連接,值為false,當調用連接電話方法()后,在判斷卡號和密碼相匹配后值置為true) 連接電話方法(performConnection(卡號,密碼))可以完成檢查卡號和密碼,它是只有在卡號和密碼相匹配時才連接 返回余額方法(getBalance())得到電話卡的余額 通電話方法(performDial())是模擬通過過程中,余額會不斷減少,每調用此方法,電話卡的余額減少0。5元,打一次電話調用一次

    標簽: JAVA 編寫 程序

    上傳時間: 2014-01-20

    上傳用戶:1109003457

  • arm9的bootloader,適合通用2410x平臺 vivi.pal(20051228)支持tv輸出和vga輸出

    arm9的bootloader,適合通用2410x平臺 vivi.pal(20051228)支持tv輸出和vga輸出,vclk為26.25mhz vivi(20060330)支持vga輸出和tv輸出,vclk為25mhz 以上兩個vivi均編譯自vivi-br-release(20051228).tar.gz 在兩個不同vivi間切換的方法是在源文件“/include/platform/smdk2410.h”中打開或者取消對PAL640480宏的定義: #define PAL640480 默認該句是注釋掉的,編譯得到的vivi的vclk為25mhz ch7005手冊中要求640x480的pal輸出時vclk為26.25mhz,但實踐中發現并不需要完全等與這個頻率,有時候vivi(20051228)的pal效果更好,具體使用哪個參數用戶可以多比較嘗試,也可以嘗試修改成其他的頻率。

    標簽: bootloader 20051228 2410x arm9

    上傳時間: 2013-12-16

    上傳用戶:cainaifa

  • These two classes show an extremely simple example of java.net socket programming. They implement th

    These two classes show an extremely simple example of java.net socket programming. They implement the Unix daytime protocol, an extremely simple protocol that consists entirely of the server sending its current local time and date to the client as an ASCII string. The server, to keep it very simple, does not use multiple threads. This code requires JDK 1.1 or later, but can easily be adapted to JDK 1.0.

    標簽: programming extremely implement classes

    上傳時間: 2015-11-16

    上傳用戶:jennyzai

  • 實習題 [問題描述] 1. 設順序表中的數據元素遞增有序

    實習題 [問題描述] 1. 設順序表中的數據元素遞增有序,將插入到順序表的適當位置上,是該表仍然有序。 [輸入] 初始順序表,插入字符。 [輸出] 插入x后線性表的結果 [存儲結構] 采用順序存儲結構 [算法的基本思想] 建立一個遞增順序表,插入一個數值并移動元素,使其仍然有序。 程序如下: #include "iostream.h" #include <malloc.h> #define LIST_INTI_SIZE 100//初始空間大小 typedef struct SqList

    標簽: 實習 元素 順序表 數據

    上傳時間: 2014-01-14

    上傳用戶:fhzm5658

主站蜘蛛池模板: 朔州市| 安仁县| 外汇| 于都县| 桂阳县| 诏安县| 黎平县| 焉耆| 宝丰县| 锦屏县| 河南省| 吉隆县| 双城市| 正蓝旗| 静宁县| 龙泉市| 岳阳市| 蚌埠市| 平顶山市| 张北县| 云龙县| 靖西县| 碌曲县| 山西省| 阿克陶县| 榆林市| 宜兰县| 濮阳县| 黄浦区| 怀化市| 敦化市| 威海市| 寻甸| 阿拉善右旗| 陇南市| 措美县| 出国| 岳普湖县| 彭山县| 孙吴县| 小金县|