haizzh

博客园 首页 新随笔 联系 订阅 管理

2016年12月27日 #

摘要: 参考博客地址:http://blog.csdn.net/sxhelijian/article/details/8222858 对于“程序设计”的工作,许多初学者的理解就是“写代码”。同样,新手们苦恼的问题是,他们只会“写代码”。当接到一个新的任务,不少人总是在第一时间就爬到键盘上去敲代码。敲着敲着, 阅读全文
posted @ 2016-12-27 10:23 haizzh 阅读(1642) 评论(0) 推荐(0) 编辑

2016年12月15日 #

摘要: @Html.ActionLink("Home Name", "Index", "Home")Home name 是 跳转链接的名Index 是 action 值Home 是 Control 值 @Html.ActionLink("Application name", "Index", "Home", 阅读全文
posted @ 2016-12-15 16:21 haizzh 阅读(411) 评论(0) 推荐(0) 编辑

2016年12月14日 #

摘要: 选择器例子例子描述CSS .class .intro 选择 class="intro" 的所有元素。 1 #id #firstname 选择 id="firstname" 的所有元素。 1 * * 选择所有元素。 2 element p 选择所有 <p> 元素。 1 element,element 阅读全文
posted @ 2016-12-14 15:28 haizzh 阅读(160) 评论(0) 推荐(0) 编辑

2016年12月8日 #

摘要: class Program { static void Main(string[] args) { string testStr = "sdfadfdsfadfdsfsdf"; int length = testStr.Length; while (length > 1) ... 阅读全文
posted @ 2016-12-08 13:20 haizzh 阅读(214) 评论(0) 推荐(0) 编辑

2016年11月21日 #

摘要: 今天写了个C#的小测试程序,一开始使用的默认命名WindowsFormsApplication2,写完后觉得名字不好看,于是想改个名字,但是试了一下,想完整的改名还挺复杂,不但要改解决方案名,项目名,还要改命名空间名和文件夹名。顺序如下: 1. VS2010上解决方案名上右键->重命名 2. 项目名 阅读全文
posted @ 2016-11-21 15:03 haizzh 阅读(2094) 评论(0) 推荐(0) 编辑

2016年11月16日 #

摘要: 1. 开始是一套面试题,可以选JAVA或C/C++两个语言的英文题。基础语法题,以指针为主。 2. 英文介绍,自由发挥。问了以下几个问题: 离职的愿意,未来五年的计划,介不介意使用ABAP language开发。 3 技术部分,因为面试的岗位是ABAP developer。 Question:堆栈的 阅读全文
posted @ 2016-11-16 22:14 haizzh 阅读(301) 评论(0) 推荐(0) 编辑

2016年11月11日 #

摘要: w3cschool : http://www.w3school.com.cn/h.asp 菜鸟教程:http://www.runoob.com/ 51CTO: http://www.51cto.com/ angularjs: https://angularjs.org/ Python学习大本营: h 阅读全文
posted @ 2016-11-11 11:10 haizzh 阅读(1034) 评论(0) 推荐(0) 编辑

2016年11月3日 #

摘要: 目录 跳过目录 跳过目录 本文目标 本文目标 30分钟内让你明白正则表达式是什么,并对它有一些基本的了解,让你可以在自己的程序或网页里使用它。 如何使用本教程 如何使用本教程 最重要的是——请给我30分钟,如果你没有使用正则表达式的经验,请不要试图在30秒内入门——除非你是超人 :) 别被下面那些复 阅读全文
posted @ 2016-11-03 14:34 haizzh 阅读(314) 评论(0) 推荐(0) 编辑

摘要: Specifies that the regular expression is compiled to an assembly. This yields faster execution but increases startup time. This value should not be as 阅读全文
posted @ 2016-11-03 14:32 haizzh 阅读(331) 评论(0) 推荐(0) 编辑

2016年10月31日 #

摘要: 1.一个package包含一个control flow并且一个或多个data flow. (这个项目叫做 Integration services project,提供了三种不同类型的control flow 元件) 1.1 containers(provide structures in pack 阅读全文
posted @ 2016-10-31 18:41 haizzh 阅读(188) 评论(0) 推荐(0) 编辑