题目描述: Grading hundreds of thousands of Graduate Entrance Exams is a hard work. It is even harder to design a process to make the results as fair as po...
分类:
其他好文 时间:
2014-07-19 19:09:03
阅读次数:
282
var newFragment = new mybacklogF (); var ft = FragmentManager.BeginTransaction (); ft.Replace (Resource.Id.main_FragmentCont...
分类:
其他好文 时间:
2014-07-19 00:08:19
阅读次数:
210
Description
You have just finished a compiler design homework question where you had to find the parse tree of an expression. Unfortunately you left your assignment in the library, but lucki...
分类:
其他好文 时间:
2014-07-18 22:19:15
阅读次数:
249
近日将电脑重装了一下,刚刚装上vs2005后打开以前的一个项目,居然出现了下面的错误: 未能加载文件或程序集“System.Web.Extensions.Design, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad...
分类:
Web程序 时间:
2014-07-18 20:12:39
阅读次数:
237
mono可以让.net程序运行在linux平台上。于是.net程序员有了mono之后就转身跨平台了。但开放环境往往还是在windows下,于是有了这样的需求,是否可以用windows下的源码来实机调试linux下的程序呢?如今Xamarin已经被广泛地使用在移动平台的应用开发上,当然也能够支持实机调...
分类:
其他好文 时间:
2014-07-18 16:06:28
阅读次数:
303
Chain of Responsibility in the Real WorldThe idea of the Chain Of Responsibility is that it avoids coupling the sender of the request to the receiver,...
分类:
其他好文 时间:
2014-07-18 08:36:38
阅读次数:
294
看到ASP.NET vNext要支持Linux后,终于按捺不住折腾的心,决定先架个环境出来,只是实在没想到,因为相对熟悉点才选择的Ubuntu 14.04,会让过程会如此坎坷,有时呆看着屏幕上提示的种种error,真有点别人碰到的错都被我碰到了的荣幸,所以目标达成后,回头将这些错误回顾一遍,记录.....
分类:
其他好文 时间:
2014-07-17 19:01:50
阅读次数:
278
目录规范
目录规范——在开发中整体文件夹组织结构。
1.Requirement——需求文档文件夹
2.Design——设计文档文件夹
3.Test——集成测试,系统测试,测试报告,测试清单文件夹
4.Deployment——发布部署的文件夹
5.Study——预研,学习资料的文件夹
6.Src——源码文件夹
7.Help——帮助文档文件夹
基本命名规范
1.变量使用驼峰...
分类:
其他好文 时间:
2014-07-17 15:03:42
阅读次数:
270
步骤 1 : 假设窗体名为 Form1 ,将 Form1.design.cs , Form1.cs , Form1.resx 三个文件copy 到目标文件夹 2 : 先add existing ,将 Form1.design.cs添加进去 , 然后记得改 project namespace 3 .....
动态存储类
StrVec Class Design
StrVec Class Definition
class StrVec
{
public:
//构造函数
StrVec():elements(nullptr), first_free(nullptr), cap(nullptr){}
//用initializer_list初始化参数列表
StrVe...
分类:
其他好文 时间:
2014-07-17 10:22:21
阅读次数:
286