执着鞋垫

文章
4
资源
0
加入时间
2年10月18天

STL容器之vector、list1、动态数组vector2、双向链表list

上一篇:STL容器简介1、动态数组vector2、双向链表list下一篇:STL容器之set、map、unordered_set、unordered_map1、动态数组vectorvector将其元素放在一个动态数组中管理,它允许随机访问,在vector尾部附加或者移除元素都很快,但是在vector中间或起始段安插元素比较费时,因为作用点之后的每个元素都必须移动到另一位置。 ...

遍历泛型类型的属性值

public string GetValue<T>(T ModelList) { string ValueName = ""; //属性名称 string Value = ""; //属性值 System.Reflection.PropertyInfo[...

嵌入式学习之UART编程实例

#include "s3c24xx.h"#include "serial.h"#define TXD0READY (1<<2)#define RXD0READY (1)#define PCLK 50000000 // init.c中的clock_init函数设置PCLK为50MHz#define UART_CLK PCLK