基本数据类型: 数字 字符串 布尔值 列表 元祖 字典 所有对象所具备的功能都保存在相应的类中。 查看对象的类,或对象所具备的功能。 1、通过type()查看 temp = "alex"t = type(temp) 2、整体查看dir()快速列举 temp = "alex"t = type(temp ...
分类:
编程语言 时间:
2017-04-03 18:46:33
阅读次数:
186
ShaderLab syntax: Blending 混合 Blending is used to make transparent objects. 混合是用来制作透明物体的。 When graphics are rendered, after all shaders have executed ...
分类:
编程语言 时间:
2017-04-03 18:44:13
阅读次数:
333
public static String generateXSD(string xmlPath) { XmlReader reader = XmlReader.Create(xmlPath); XmlSchemaSet schemaSet = new XmlSchemaSet(); String x ...
分类:
其他好文 时间:
2017-04-03 00:13:19
阅读次数:
146
C++ 定义 typedef struct Stu{public: int Age; char Name[20];}; typedef struct Num { int N1; int N2; }; extern "C" __declspec(dllexport) void FindInfo(Stu ...
分类:
编程语言 时间:
2017-04-02 21:46:21
阅读次数:
220
单列布局水平居中 水平居中的页面布局中最为常见的一种布局形式,多出现于标题,以及内容区域的组织形式,下面介绍四种实现水平居中的方法(注:下面各个实例中实现的是child元素的对齐操作,child元素的父容器是parent元素) 使用inline-block 和 text-align实现 .paren ...
分类:
Web程序 时间:
2017-04-01 14:56:38
阅读次数:
284
摘要: 1.算法概述 2.算法推导 3.算法特性及优缺点 4.注意事项 5.实现和具体例子 6.适用场合 7.与NB,pLSA比较 ...
分类:
其他好文 时间:
2017-04-01 12:22:48
阅读次数:
322
Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity. ...
分类:
其他好文 时间:
2017-03-31 18:57:17
阅读次数:
158
(声明:本文非EamonSec原创) 使用ZooKeeper实现的Master-Slave实现方式,是对ActiveMQ进行高可用的一种有效的解决方案,高可用的原理:使用ZooKeeper(集群)注册所有的ActiveMQBroker。只有其中的一个Broker可以对外提供服务(也就是Master节 ...
分类:
其他好文 时间:
2017-03-31 00:15:03
阅读次数:
200
1、执行 Python 脚本的两种方式 终端和交互模式 方法1:python helloword.py 2、简述位、字节的关系 1 Byte = 8 bit1 bit = 1/8 Byte1字节=8位1位=1/8字节 3、简述 ascii、unicode、utf-8、gbk 的关系 unicode: ...
分类:
编程语言 时间:
2017-03-30 20:39:51
阅读次数:
235
变量 容器 变量名 标记 数据的作用 字符编码 二进制位 = bit = 8bits1个二进制位是计算机里的最小表示单元 1个字节是计算机里最小的存储单位 8bits = 1Byte =1字节1024Bytes = 1KB =1 字节1024KB = 1MB = 100万字节 =100万字符 =1兆 ...
分类:
编程语言 时间:
2017-03-30 15:28:25
阅读次数:
256