- 博客(8)
- 收藏
- 关注
转载 C#------Accepting Values from User
TheConsoleclass in theSystemnamespace provides a functionReadLine()for accepting input from the user and store it into a variable.For example,int num;num = Convert.ToInt32(Console.Rea...
2019-09-01 13:25:00
124
转载 C#------Object type & Dynamic type
Dynamic types are similar to object types except that type checking for object type variables takes place at compile time, whereas that for the dynamic type variables takes place at run time.转载...
2019-09-01 12:30:00
181
转载 A example of Memory leaks
The objects created by new-expressions (objects with dynamic storage duration) persist until the pointer returned by the new-expression is used in a matchingdelete-expression. If the original va...
2019-09-01 10:26:00
140
转载 C++------Free Form?
C++的语法的自由形式常被一些资深编程者用作代码复杂化的手段,即有意地将代码进行复杂化来使得程序不易读,借此来保护程序不易于被复制,不利于被解析。转载于:https://www.cnblogs.com/ShadowDomain/p/11438142.html...
2019-08-31 10:30:00
133
转载 Programming Paradigm
A Programming Paradigm is a model of programming based on the distinct concepts that shapes the way programmers design, organize and write programs.A MULTI-PARADIGM PROGAMMING LANGUAGE allows ...
2019-08-31 08:19:00
234
转载 ASM------A language concerns about processor architectures
Assembly language is processor specific. This means that a program written in assembly language will not work on computers with different processor architectures.Using ASM to optimize certain t...
2019-08-30 23:10:00
162
转载 C++------你知道嘛?
Comments starting with two slashes(" // ") were originally part of BCPL(Basic Combined Programming Language), and were reintroduced in C++.转载于:https://www.cnblogs.com/ShadowDomain/p/11437449.ht...
2019-08-30 22:35:00
166
转载 (英语能力优秀者优先阅读)C——内存管理——摘自wiki
array limitations:the size of the array must be known beforehandthe size of the array cannot be changed in the duration of your programSo there comes Dynamic memory allocation:Dynamic...
2019-08-17 10:33:00
396
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅