码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
ASP.NET MVC自定义异常处理
1.自定义异常处理过滤器类文件新建MyExceptionAttribute.cs异常处理类文件MyExceptionAttribute.cs代码如下:using System;using System.Collections.Generic;using System.Linq;using Syste...
分类:Web程序   时间:2015-12-21 17:50:15    阅读次数:139
java多线程编码注意事项
Sole purpose of using concurrency is to produce scalable and faster program. But always remember, speed comes after correctness. Your Java program mus...
分类:编程语言   时间:2015-12-21 17:37:16    阅读次数:352
filesort是什么意思?
我们碰到有order by 或者group by,或者distinct语句的时候,如果查看执行计划,通常会看到using filesort的字眼,那么这个filesort是不是真是文件排序呢?其实不然,filesort和file没有一点关系,只是不好的代名词。如果一个语句不能在索引上完成排序,那么就...
分类:其他好文   时间:2015-12-21 16:05:04    阅读次数:153
PHP mail详细示例
From:http://php.net/manual/zh/function.mail.phpExample #1 Sending mail.Using mail() to send a simple email: Example #2 Sending mail with extra...
分类:Web程序   时间:2015-12-21 15:46:29    阅读次数:141
WebForm vs MVC
What is ASP.NET?ASP.NET is a Microsoft’s Web application framework built on Common language runtime for building dynamic web sites using one of the pr...
分类:Web程序   时间:2015-12-21 12:26:50    阅读次数:207
C#操作Excel基本操作
///using Microsoft.Office.Core;using Microsoft.Office.Interop.Excel;using System.IO;using System.Reflection; /// 导出按钮的点击事件 /// /// /// private void...
分类:Windows程序   时间:2015-12-21 12:11:57    阅读次数:250
C#十五子游戏
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:Windows程序   时间:2015-12-21 10:32:34    阅读次数:210
*Sort List
Sort a linked list inO(nlogn) time using constant space complexity. 1 /** 2 * 本代码由九章算法编辑提供。没有版权欢迎转发。 3 * - 九章算法致力于帮助更多中国人找到好的工作,教师团队均来自硅谷和国内的一线大公...
分类:其他好文   时间:2015-12-21 09:20:27    阅读次数:225
*Insertion Sort List
Sort a linked list using insertion sort. 1 public class Solution { 2 public ListNode insertionSortList(ListNode head) { 3 ListNode dummy =...
分类:其他好文   时间:2015-12-21 07:04:28    阅读次数:186
cout和printf
#include using namespace std;int main(){ int i=0,j=0; coutusing namespace std;int hello1();int hello2();int main() { int a, b; cout<<"a="<...
分类:其他好文   时间:2015-12-21 01:57:34    阅读次数:174
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!