自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(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 87

转载 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 131

转载 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 103

转载 C++------Free Form?

C++的语法的自由形式常被一些资深编程者用作代码复杂化的手段,即有意地将代码进行复杂化来使得程序不易读,借此来保护程序不易于被复制,不利于被解析。 转载于:https://www.cnblogs.com/ShadowDomain/p/11438142.html...

2019-08-31 10:30:00 99

转载 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 171

转载 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 121

转载 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 120

转载 (英语能力优秀者优先阅读)C——内存管理——摘自wiki

array limitations: the size of the array must be known beforehand the size of the array cannot be changed in the duration of your program So there comes Dynamic memory allocation: Dynamic...

2019-08-17 10:33:00 362

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除