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

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

Public-Resource

  • 驅(qū)動(dòng)器123

    ble Logic Controller,可編程邏輯控制器,一種數(shù)字運(yùn)算操作的電子系統(tǒng),專為在工業(yè)環(huán)境應(yīng)用而設(shè)計(jì)的。它采用一類可編程的存儲(chǔ)器,用于其內(nèi)部存儲(chǔ)程序,執(zhí)行邏輯運(yùn)算,順序控制,定時(shí),計(jì)數(shù)與算術(shù)操作等面向用戶的指令,并通過(guò)數(shù)字或模擬式輸入/輸出控制各種類型的機(jī)械或生產(chǎn)過(guò)程。是工業(yè)控制的核心部分。   另外PLC還有以下幾個(gè)名稱:   PLC = Power Line Communication,電力線通信,即我們俗稱的“電力線上網(wǎng)”。   PLC = Public Listed Co

    標(biāo)簽: 驅(qū)動(dòng)器

    上傳時(shí)間: 2018-06-27

    上傳用戶:454545

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

    我們編寫的程序由兩個(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)寫為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++從入門到精通.pdf電子書(shū) 第二版

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

    上傳用戶:jizhi111

  • Millimeter+Wave+V2V+Communications

    Recently millimeter-wave bands have been postu- lated as a means to accommodate the foreseen extreme bandwidth demands in vehicular communications, which result from the dissemination of sensory data to nearby vehicles for enhanced environmental awareness and improved safety level. However, the literature is particularly scarce in regards to principled resource allocation schemes that deal with the challenging radio conditions posed by the high mobility of vehicular scenarios

    標(biāo)簽: Communications Millimeter Wave V2V

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

    上傳用戶:shancjb

  • Enablers for Smart Cities

    The concept of smart cities emerged few years ago as a new vision for urban development that aims to integrate multiple information and communication technology (ICT) solutions in a secure fashion to manage a city’s assets. Modern ICT infrastructure and e-services should fuel sustainable growth and quality of life, enabled by a wise and participative management of natural resources to be ensured by citizens and government. The need to build smart cities became a requirement that relies on urban development that should take charge of the new infrastructures for smart cities (broadband infrastructures, wireless sensor networks, Internet-based networked applications, open data and open platforms) and provide various smart services and enablers in various domains including healthcare, energy, education, environmental management, transportation, mobility and public safety.

    標(biāo)簽: Enablers Cities Smart for

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

    上傳用戶:shancjb

  • Artificial+Intelligence

    The current methods of communications are becoming less relevant under today’s growing demand for and reliance on constant connectivity. Of decreasing relevance are the models of a single radio to perform a single task. The expansion of wireless access points among coffee shops, airports, malls, and other public arenas is opening up opportunities for new services and applications.

    標(biāo)簽: Intelligence Artificial

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

    上傳用戶:shancjb

  • Cognitive+Radio,+Software+Defined+Radio

    Today’s wireless services have come a long way since the roll out of the conventional voice-centric cellular systems. The demand for wireless access in voice and high rate data multi-media applications has been increasing. New generation wireless communication systems are aimed at accommodating this demand through better resource management and improved transmission technologies.

    標(biāo)簽: Radio Cognitive Software Defined

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

    上傳用戶:shancjb

  • EDGE+for+Mobile+Internet

    The General Packet Radio Service (GPRS) allows an end user to send and receive data in packet transfer mode within a public land mobile network (PLMN) without using a permanent connection between the mobile station (MS) and the external network during data transfer. This way, GPRS opti- mizes the use of network and radio resources (RRs) since, unlike circuit- switched mode, no connection between the MS and the external network is established when there is no data flow in progress. Thus, this RR optimiza- tion makes it possible for the operator to offer more attractive fees.

    標(biāo)簽: Mobile EDGE

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

    上傳用戶:shancjb

  • Introduction+to+Mobile+Telephone+Systems

    Mobile telephone service (MTS) is a type of service where mobile radio tele- phones connect people to the public switched telephone system (PSTN), to other mobile telephones or to other communication systems (such as to the Internet).

    標(biāo)簽: Introduction Telephone Systems Mobile to

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

    上傳用戶:shancjb

  • IP,+Ethernet+and+MPLS+Networks+

    This book addresses two aspects of network operation quality; namely, resource management and fault management. Network operation quality is among the functions to be fulfilled in order to offer quality of service, QoS, to the end user. It is characterized by four parameters: – packet loss; – delay; – jitter, or the variation of delay over time; – availability. Resource management employs mechanisms that enable the first three parameters to be guaranteed or optimized. Fault management aims to ensure continuity of service.

    標(biāo)簽: Ethernet Networks MPLS and IP

    上傳時(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

主站蜘蛛池模板: 彩票| 辽阳县| 恩施市| 黎城县| 陵川县| 鸡泽县| 祁连县| 永兴县| 瑞安市| 若尔盖县| 东方市| 禹州市| 札达县| 乐亭县| 唐河县| 山丹县| 阳春市| 广州市| 江源县| 来凤县| 南城县| 奇台县| 渑池县| 承德市| 通州区| 武安市| 博客| 龙游县| 青田县| 鹤庆县| 鄂托克前旗| 修武县| 新邵县| 赫章县| 桐乡市| 辽宁省| 余庆县| 高尔夫| 响水县| 都安| 龙陵县|