类型装换 long l = 123456789123;//整数默认是int类型,由于数值123456789123超过了int类型的范围,所以报错:The literal 123456789123 of type int is out of range(超出范围) long l2 = 12345678... ...
分类:
其他好文 时间:
2016-10-06 19:38:37
阅读次数:
225
逛到一个有意思的博客http://cuiqingcai.com/category/technique/python 在里面看到一篇关于ValueError: invalid literal for int() with base 10错误的解析,针对这个错误,博主已经给出解决办法,使用的是re.su ...
分类:
编程语言 时间:
2016-10-04 01:35:48
阅读次数:
273
示例: var device_mac="11qweq234ert"; //第一种方式会报错:Onclick SyntaxError: identifier starts immediately after numeric literal,数字后面紧跟着字符 这种写法只有device_mac是数字的时 ...
分类:
Web程序 时间:
2016-09-30 15:28:46
阅读次数:
140
Design a data structure that supports the following two operations: search(word) can search a literal word or a regular expression string containing o ...
分类:
其他好文 时间:
2016-09-22 01:19:26
阅读次数:
269
一、简单控件 1、Label(作用:显示文字) Web中: 编译完成后的元素时span(html) 属性:①BackColor:控件背景色 ; ②BorderColor:控件边框颜色; ③BorderStyle:控件边框样式; ④BorderWidth:控件边框宽度 2、Literal(作用:显示文 ...
分类:
数据库 时间:
2016-09-20 23:55:13
阅读次数:
238
一、控件 【简单控件】 (一)文字显示 1、Label → 在html中相当于span <asp:Label ID="控件名 runat="server" Text="显示的文本"></asp:Label>2、Literal → 仅文字 → 一般用来输出JS代码 <asp:Literal ID="L ...
分类:
数据库 时间:
2016-09-20 22:36:58
阅读次数:
241
一、简单控件 1、label:边框(边框的颜色、样式、粗细) 是专门显示文字的, 被编译后是 <span id="Label1">Label</span> 2、Literal: Text属性,作用显示文字 编译后不会形成任何元素,一般被用来输出Js代码,比较灵活 <asp:Literal ID="L ...
分类:
Web程序 时间:
2016-09-20 15:09:35
阅读次数:
218
Design a data structure that supports the following two operations: search(word) can search a literal word or a regular expression string containing o ...
分类:
其他好文 时间:
2016-09-10 06:38:19
阅读次数:
116
微软推出TypeScript编程语言已有差不多4年时间,不过该公司正准备发布第二个大版本。TypeScript 2.0的开发似乎已近完成,因为该公司已经开放了候选发布(RC)版本的下载。在发行说明中,其主要提到了三方面的增强,分别是——(1)Tagged unions;(2)更多Literal字体; ...
分类:
其他好文 时间:
2016-09-02 15:50:20
阅读次数:
110
提问: 1.为什么要使用switch方法 ==> (替换冗长的if和else判断) 2.什么场景下使用 ==> (在判断布尔值的) 3.switch有什么优点 ==> (简化了代码,语法更清晰) 4.switch有什么缺点 ==> (太多的case和break关键字,出现bug时难于调试) 5.还有 ...
分类:
其他好文 时间:
2016-08-21 21:03:29
阅读次数:
189