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

蟲(chóng)蟲(chóng)首頁(yè)| 資源下載| 資源專輯| 精品軟件
登錄| 注冊(cè)

interface

interface是面向?qū)ο缶幊陶Z(yǔ)言中接口操作的關(guān)鍵字,功能是把所需成員組合起來(lái),用來(lái)封裝一定功能的集合。它好比一個(gè)模板,在其中定義了對(duì)象必須實(shí)現(xiàn)的成員,通過(guò)類或結(jié)構(gòu)來(lái)實(shí)現(xiàn)它。接口不能直接實(shí)例化,即ICountic=newiCount()是錯(cuò)的。接口不能包含成員的任何代碼,只定義成員本身。接口成員的具體代碼由實(shí)現(xiàn)接口的類提供。接口使用interface關(guān)鍵字進(jìn)行聲明。
  • MSP430G2553

    DESCRIPTION The Texas Instruments MSP430 family of ultra-low-power microcontrollers consists of several devices featuring different sets of peripherals targeted for various applications. The architecture, combined with five low-power modes, is optimized to achieve extended battery life in portable measurement applications. The device features a powerful 16-bit RISC CPU, 16-bit registers, and constant generators that contribute to maximum code efficiency. The digitally controlled oscillator (DCO) allows wake-up from low-power modes to active mode in less than 1 μs. The MSP430G2x13 and MSP430G2x53 series are ultra-low-power mixed signal microcontrollers with built-in 16- bit timers, up to 24 I/O capacitive-touch enabled pins, a versatile analog comparator, and built-in communication capability using the universal serial communication interface. In addition the MSP430G2x53 family members have a 10-bit analog-to-digital (A/D) converter. For configuration details see Table 1. Typical applications include low-cost sensor systems that capture analog signals, convert them to digital values, and then process the data for display or for transmission to a host system.

    標(biāo)簽: G2553 2553 430G MSP 430

    上傳時(shí)間: 2018-12-25

    上傳用戶:ygyh

  • c++從入門(mén)到精通.pdf電子書(shū) 第二版

    我們編寫(xiě)的程序由兩個(gè)主要方面組成 1 算法的集合就是將指令組織成程序來(lái)解決某個(gè)特定的問(wèn)題 2 數(shù)據(jù)的集合算法在這些數(shù)據(jù)上操作以提供問(wèn)題的解決方案 縱觀短暫的計(jì)算機(jī)發(fā)展史這兩個(gè)主要方面算法和數(shù)據(jù)一直保持不變發(fā)展演化的 是它們之間的關(guān)系就是所謂的程序設(shè)計(jì)方法programming paradigm 在過(guò)程化程序設(shè)計(jì)方法procedural programming 中一個(gè)問(wèn)題可直接由一組算法來(lái)建 立模型例如公共圖書(shū)館的資料借閱/登記check out/check in 系統(tǒng)是由一系列過(guò)程表現(xiàn) 出來(lái)的其中兩個(gè)主要的過(guò)程是資料的借閱和登記這些數(shù)據(jù)被獨(dú)立存儲(chǔ)起來(lái)我們既可以 在某個(gè)全局位置上訪問(wèn)這些數(shù)據(jù)或者把數(shù)據(jù)傳遞給過(guò)程以便它能夠訪問(wèn)這些數(shù)據(jù)Fortran C 和 Pascal 是三種著名的過(guò)程語(yǔ)言C++也支持過(guò)程化程序設(shè)計(jì)單獨(dú)的過(guò)程如check_in() check_out() over_due() fine()等等都被稱為函數(shù)第三篇將集中討論C++對(duì)過(guò)程化程序 設(shè)計(jì)方法的支持尤其將重點(diǎn)討論函數(shù)函數(shù)模板和通用算法 在20 世紀(jì)70 年代程序設(shè)計(jì)的焦點(diǎn)從過(guò)程化程序設(shè)計(jì)方法轉(zhuǎn)移到了抽象數(shù)據(jù)類型 abstract data type 簡(jiǎn)寫(xiě)為ADT 的程序設(shè)計(jì)上現(xiàn)在通常稱之為基于對(duì)象(object based 的程序設(shè)計(jì)在基于對(duì)象的程序設(shè)計(jì)方法中我們通過(guò)一組數(shù)據(jù)抽象來(lái)建立問(wèn)題的模型在 C++中我們把這些抽象稱為類class 例如在這種方法下圖書(shū)館資料借閱登記系統(tǒng)就 由類的對(duì)象實(shí)例比如書(shū)借閱者還書(shū)時(shí)間罰款等之間的相互作用表現(xiàn)出來(lái)以此表 示出圖書(shū)館的抽象概念與每個(gè)類相關(guān)的算法被稱為該類的公有接口public interface 數(shù) 據(jù)以私有形式被存儲(chǔ)在每個(gè)對(duì)象中對(duì)數(shù)據(jù)的訪問(wèn)應(yīng)與一般的程序代碼隔離開(kāi)來(lái)CLU Ada 和Modula-2 是三種支持抽象數(shù)據(jù)類型的程序設(shè)計(jì)語(yǔ)言第四篇將說(shuō)明和討論C++對(duì)抽象數(shù)據(jù) 類型程序設(shè)計(jì)方法的支持 面向?qū)ο蟮某绦蛟O(shè)計(jì)方法通過(guò)繼承inheritance 機(jī)制和動(dòng)態(tài)綁定dynamic binding 機(jī) 制擴(kuò)展了抽象數(shù)據(jù)類型繼承機(jī)制是對(duì)現(xiàn)有實(shí)現(xiàn)代碼的重用動(dòng)態(tài)綁定是指對(duì)現(xiàn)有的公有接 口的重用以前獨(dú)立的類型現(xiàn)在有了類型/子類型的特定關(guān)系一本書(shū)一盒錄像帶一段錄 音甚至孩子的寵物盡管它們有各自的借閱/登記方式但都可以成為圖書(shū)館的收藏資料 共享的公有接口和私有的數(shù)據(jù)都放在一個(gè)抽象類圖書(shū)館資料LibraryMaterial 中每個(gè)特 殊的圖書(shū)館資料類都從LibraryMaterial 抽象類繼承共享的行為它們只需要提供與自身行為相 關(guān)的算法和數(shù)據(jù)Simula Smalltalk 和Java 是三種支持面向?qū)ο蟪绦蛟O(shè)計(jì)方法的著名語(yǔ)言 第五篇將集中討論C++對(duì)面向?qū)ο蟪绦蛟O(shè)計(jì)方法的支持 C++是一種支持多種程序設(shè)計(jì)方法的語(yǔ)言雖然我們主要把它當(dāng)作面向?qū)ο蟮恼Z(yǔ)言但 實(shí)際上它也提供對(duì)過(guò)程化的和基于對(duì)象的程序設(shè)計(jì)方法的支持這樣做的好處是對(duì)每個(gè)問(wèn)題 都能夠提供最合適的解決方案事實(shí)上沒(méi)有一種程序設(shè)計(jì)方法能夠

    標(biāo)簽: c++從入門(mén)到精通.pdf電子書(shū) 第二版

    上傳時(shí)間: 2019-01-30

    上傳用戶:jizhi111

  • ATA協(xié)議

    AT Attachment with Packet interface - 5 ? (ATA/ATAPI-5)

    標(biāo)簽: ATA 協(xié)議

    上傳時(shí)間: 2019-11-19

    上傳用戶:wang1113

  • Indoor Radio Planning A Practical Guide for GSM

    This book is intended for the RF planners, to serve as a practical tool in their daily work designing indoor radio distribution systems. It is not a complete book about all the deep aspects and corners of GSM, DCS, UMTS and HSPA networks, or all the core network systems. It is dedicated to the last 10–70 m of the network, the indoor air interface between the mobile user and the indoor mobile network.

    標(biāo)簽: Practical Planning Indoor Guide Radio GSM for

    上傳時(shí)間: 2020-05-27

    上傳用戶:shancjb

  • LAN Switching and Wireless

    Your Cisco Networking Academy Course Booklet is designed as a study resource you can easily read, high- light, and review on the go, wherever the Internet is not available or practical: ■ The text is extracted directly, word-for-word, from the online course so you can highlight important points and take notes in the “Your Chapter Notes” section. ■ Headings with the exact page correlations provide a quick reference to the online course for your class- room discussions and exam preparation. ■ An icon system directs you to the online curriculum to take full advantage of the images, labs, Packet Tracer activities, and dynamic Flash-based activities embedded within the Networking Academy online course interface.

    標(biāo)簽: Switching Wireless LAN and

    上傳時(shí)間: 2020-05-27

    上傳用戶:shancjb

  • LTE-Advanced Air interface Technology

    During the 400 days and nights before we finalized this book on January 1, 2012, we saw the sunset decorated by the raindrop, and were accompanied by the flowers blooming to withering. All those past memories are engraved on our hearts and will last eternally, cementing the most profound friendship in the world.

    標(biāo)簽: LTE-Advanced Technology interface Air

    上傳時(shí)間: 2020-05-27

    上傳用戶:shancjb

  • Multi-Carrier+Spread+Spectrum+2007

    Since the principle of multi-carrier code division multiple access (MC-CDMA) was simultaneously proposed by Khaled Fazel et al. and Nathan Yee et al. at the IEEE International Symposium on Personal, Indoor and Mobile Radio Communications (PIMRC) in the year 1993, multi-carrier spread spectrum (MC-SS) has rapidly become one of the most wide spread independent research topics on the field of mobile radio communications. Therefore, the International Workshop on Multi-Carrier Spread Spectrum (MC-SS) was initiated in the year 1997. Multi-carrier and spread spectrum systems with their generic air interface and adaptive technologies are considered as potential candidates to fulfill the requirements of next generation mobile communications systems.

    標(biāo)簽: Multi-Carrier Spectrum Spread 2007

    上傳時(shí)間: 2020-05-31

    上傳用戶:shancjb

  • Radio Resource Management

    In a cellular communication system, a service area or a geographical region is divided into a number of cells, and each cell is served by an infrastructure element called the base station through a radio interface. Management of radio interface related resources is a critical design component in cellular communications. 

    標(biāo)簽: Management Resource Radio

    上傳時(shí)間: 2020-06-01

    上傳用戶:shancjb

  • Short-range+Wireless+Communication

    Developers, manufacturers and marketers of products incorporating short- range radio systems are experts in their fields—security, telemetry, medical care, to name a few. Often they add a wireless interface just to eliminate wires on an existing wired product. They may adapt a wireless subsystem, which is easy to integrate electrically into their system, only to find that the range is far short of what they expected, there are frequent false alarms, or it doesn’t work at all. It is for these adapters of wireless subsystems that this book is primarily intended.

    標(biāo)簽: Communication Short-range Wireless

    上傳時(shí)間: 2020-06-01

    上傳用戶:shancjb

  • Wideband+TDD

    This book is an outgrowth of the pioneering development work done by InterDigital Com- munication Corporation in 3rd Generation TDD WCDMA Technology. Many engineers and managers were involved in this development, which spanned a wide range of tech- nology areas, including system architecture, radio interface, radio modem design, radio resource management and hardware/software implementation. In addition, TDD WCDMA technology had many direct and indirect contributors across the globe in the context of the development of the 3GPP TDD WCDMA Standard.

    標(biāo)簽: Wideband TDD

    上傳時(shí)間: 2020-06-01

    上傳用戶:shancjb

主站蜘蛛池模板: 镇康县| 鄱阳县| 方城县| 韶山市| 东乌珠穆沁旗| 龙门县| 确山县| 龙里县| 伊春市| 内黄县| 新泰市| 营山县| 黄梅县| 玉门市| 洱源县| 大埔区| 报价| 六盘水市| 星子县| 黄浦区| 新乡县| 垣曲县| 余庆县| 荆州市| 拉萨市| 高尔夫| 乌拉特中旗| 盐边县| 双桥区| 富川| 昌图县| 忻城县| 林芝县| 射洪县| 伊川县| 铁岭市| 隆德县| 佛山市| 宜宾县| 唐山市| 通渭县|