freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

網(wǎng)站技術(shù)外文翻譯-其他專業(yè)(留存版)

2025-03-20 02:50上一頁面

下一頁面
  

【正文】 活。單一程序集可能包含用不同 .NET 語言編寫的多個(gè)模塊,并且類型可以相互引用,就像它們是用同一種語言編寫的。典型的 C 應(yīng)用程序使用 .NET Framework 類庫廣泛地處理常見的 “ 日常 ” 任務(wù)。 C 源文件可以定義任意數(shù)量的類、結(jié)構(gòu)、接口和事件。 C 還支持泛型方法和類型,從而提供了更出色的類型安全和性能。 4 支持 XML Web services。 始終使用特定的 Windows 標(biāo)識(shí)運(yùn)行,因此,您可以通過使用 Windows 功能(例如 NTFS 訪問控制列表 (ACL)、數(shù)據(jù)庫權(quán)限等等)來保護(hù)應(yīng)用程序的安全。 使用 頁和控件框架還可以將常用的 UI 功能封裝成易于使用且可重用的控件。 作為 .NET Framework 的一部分提供。 頁和控件框架還提供各種功能,以便可以通過主題和外觀來控制網(wǎng)站的整體外觀和感覺。此信息可以獨(dú)立于頁上的任何控件。因此,用任何語言編寫、使用任何組件模型并在任何操 作系統(tǒng)上運(yùn)行的程序,都可以訪問 XML Web services。所有的變量和方法,包括 Main 方法(應(yīng)用程序的入口點(diǎn)),都封裝在類定義中。 CLI 是一種國際標(biāo)準(zhǔn),是用于創(chuàng)建語言和庫在其中無縫協(xié)同工作的執(zhí)行和開發(fā)環(huán)境的基礎(chǔ)。s entry point, are encapsulated within class definitions. A class may inherit directly from one parent class, but it may implement any number of interfaces. Methods that override virtual methods in a parent class require the override keyword as a way to avoid accidental redefinition. In C, a struct is like a lightweight class。下圖演示了 C 源代碼文件、基類庫、程序集和 CLR 的編譯時(shí)與運(yùn)行時(shí)的關(guān)系。 在 C 中,如果需要與其他 Windows 軟件(如 COM 對(duì)象或本機(jī) Win32 DLL)交互,可以通過一個(gè)稱為 “Interop” 的過程來實(shí)現(xiàn)。 Microsoft Visual C 2021 提供 高級(jí)代碼編輯器、方便的用戶界面設(shè)計(jì)器、集成調(diào)試器和許多其他工具,以在 C 語言版本 和 .NET Framework 的基礎(chǔ)上加快應(yīng)用程序的開發(fā)。使用 運(yùn)行狀況監(jiān)視可以報(bào)告關(guān)鍵事件,這些關(guān)鍵事件提供有關(guān)應(yīng)用程序的運(yùn)行狀況和錯(cuò)誤情況的信息。 包括一個(gè)編譯器,該編譯器將包括頁和控件在內(nèi)的所有應(yīng)用程序組件編譯成一個(gè)程序集,之后 宿主環(huán)境可以使用該程序集來處理用戶請(qǐng)求。 支持基于 Web 的設(shè)備(如移動(dòng)電話、手持型計(jì)算機(jī)和個(gè)人數(shù)字助理 (PDA))的移動(dòng)控件??梢詮娜魏螢g覽器或客戶端設(shè)備請(qǐng)求 網(wǎng)頁, 會(huì)向請(qǐng)求瀏覽器呈現(xiàn)標(biāo)記( 例如 HTML)。當(dāng)用戶請(qǐng)求內(nèi)容頁時(shí),這些內(nèi)容頁與母版頁合并,產(chǎn)生將母版頁的布局與內(nèi)容頁中的內(nèi)容組合在一起的輸出。由于這些 XML 文件是 ASCII 文本文件,因此對(duì) Web 應(yīng)用 程序進(jìn)行配置更改比較簡(jiǎn)單。使用設(shè)計(jì)器可以為控件生成設(shè)計(jì)時(shí)用戶界面,這樣開發(fā)人員可以在可視化設(shè)計(jì)工具中配置控件的屬性和內(nèi)容。 ? 屬性 (Property),充當(dāng)私有成員變量的訪問器。然后,如果符合安全要求, CLR 執(zhí)行實(shí)時(shí) (JIT) 編譯以將 IL 代碼轉(zhuǎn)換為本機(jī)機(jī)器指令。s types, version, culture, and security requirements. When the C program is executed, the assembly is loaded into the CLR, which might take various actions based on the information in the manifest. Then, if the security requirements are met, the CLR performs just in time (JIT) pilation to convert the IL code into native machine instructions. The CLR also provides other services related to automatic garbage collection, exception handling, and resource management. Code that is executed by the CLR is sometimes referred to as managed code, in contrast to unmanaged code which is piled into native machine language that targets a specific system. The following diagram illustrates the piletime and run time relationships of C source code files, the base class libraries, assemblies, and the CLR. 14 Language interoperability is a key feature of the .NET Framework. Because the IL code produced by the C piler conforms to the Common Type Specification (CTS), IL code generated from C can interact with code that was generated from the .NET versions of Visual Basic, Visual C++, Visual J, or any of more than 20 other CTSpliant languages. A single assembly may contain multiple modules written in different .NET languages, and the types can reference each other just as if they were written in the same language. In addition to the run time services, the .NET Framework also includes an extensive library of over 4000 classes anized into namespaces that provide a wide variety of useful functionality for everything from file input and output to string manipulation to XML parsing, to Windows Forms controls. The typical C application uses the .NET Framework class library extensively to handle mon plumbing chores. 出處:本外文資料出自由 Russ Basiura, Mike Batongbacal, 康博 . 編寫的Professional Web Services. 。程序集包含清單,它提供關(guān)于程序集的類型、版本、區(qū)域性和安全要求等信息。在 C 中,結(jié)構(gòu)類似于一個(gè)輕量類;它是一種堆棧分配的類型,可 以實(shí)現(xiàn)接口,但不支持繼承。通過 的基礎(chǔ)結(jié)構(gòu),您可以響應(yīng)應(yīng)用程序事件并創(chuàng)建自定義 HTTP 處理程序和 HTTP 模塊。您可以在部署 應(yīng)用程序時(shí)定義配置設(shè)置,并且可以隨時(shí)添加或修訂配置設(shè)置,且對(duì)運(yùn)行的 Web 應(yīng)用程序和服務(wù)器具有最小的影響。一個(gè)母版頁可以定義您希望應(yīng)用程序中的所有頁(或一組頁)所具有的布局和標(biāo)準(zhǔn)行為。使用這些語言,可以開發(fā)利用公共語言運(yùn)行 庫、類型安全、繼承等方面的優(yōu)點(diǎn)的 應(yīng)用程序。在 網(wǎng)頁中,可以使用屬性、方法和事件來處理 HTML 元素。您可以使用由 IIS 提供的 Window
點(diǎn)擊復(fù)制文檔內(nèi)容
高考資料相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號(hào)-1