- Hands-On Object:Oriented Programming with C#
- Raihan Taher
- 156字
- 2021-07-02 12:44:33
Common Type System
As there is a layer of abstraction between the language and the framework, it is evident that each of the language literals are mapped to specific CLR types. For instance, the integer of VB.NET is the same as the int of C#, as both of them point to the same type, System.Int32. It is always preferred to use language types since the compiler takes care of the mapping of types. The CTS system is built as a hierarchy of types with System.Object at its apex. The Common Type System (CTS) is divided into two kinds, one of which is value types, which are primitives that are derived from System.ValueTypes, while anything other than that is a reference type. The value types are treated differently to the reference types. This is because while allocation of memory value types are created on a thread stack during execution, reference types are always created on the heap.
- Unity 2020 By Example
- Apache Oozie Essentials
- Mastering Concurrency in Go
- Building Cross-Platform Desktop Applications with Electron
- Learning ELK Stack
- 軟件項(xiàng)目管理實(shí)用教程
- C/C++數(shù)據(jù)結(jié)構(gòu)與算法速學(xué)速用大辭典
- HTML+CSS+JavaScript網(wǎng)頁(yè)設(shè)計(jì)從入門(mén)到精通 (清華社"視頻大講堂"大系·網(wǎng)絡(luò)開(kāi)發(fā)視頻大講堂)
- Hands-On Nuxt.js Web Development
- Qt5 C++ GUI Programming Cookbook
- UI設(shè)計(jì)基礎(chǔ)培訓(xùn)教程(全彩版)
- Selenium WebDriver Practical Guide
- Using Yocto Project with BeagleBone Black
- 編程的原則:改善代碼質(zhì)量的101個(gè)方法
- VMware vSphere Design Essentials