`
jilong-liang
  • 浏览: 481419 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
文章列表

LINQ简单的入门

    博客分类:
  • LINQ
  LINQ简单的入门 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Collections; using System.Linq.Expressions; namespace LinQ { publ ...
package com.org.java7.core; import java.text.ParsePosition; import java.text.SimpleDateFormat; import java.util.Date; /** * @Author:jilongliang * @Date :2012-8-10 * @Project:JAVA7 * @Description:时间处理类 * @From:http://eternal1025.iteye.com/blog/344360 */ @SuppressWarnings("all ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Globalization; namespace Utility { /// <summary> /// <Author>梁继龙</Author> /// <Date>2012/8/10</Date> /// <Language>C Sharp</Language&g ...
//1.饿汉式单例类(类加载时就初始化) public class Singleton { //私有的类成员常量 private static final Singleton singleton=new Singleton(); //私有的默认构造方法,此类不能被继承 private Singleton(){} //静态工厂方法 public static Singleton getInstance(){ return singleton; } } // 2.懒汉式单例类(第一次调用 ...
///之前这篇加密帮助类觉得不够严谨,不够强,所以特意修改,也对自己负责一点,如果对你有帮助可以看看, ///呵呵!~这个类都经过本人测试过都没问题.   using System; using System.Collections.Generic; using
  1.抽象: 抽象就是忽略一个主题中与当前目标无关的那些方面,以便更充分地注意与当前目标有关的方面。抽象并不打算了解全部问题,而只是选择其中的一部分,暂时不用部分细节。抽象包括两个方面,一是过程抽象,二是数据抽象。    2.继承:  继承是一种联结类的层次模型,并且允许和鼓励类的重用,它提供了一种明确表述共性的方法。对象的一个新类可以从现有的类中派生,这个过程称为类继承。新类继承了原始类的特性,新类称为原始类的派生类(子类),而原始类称为新类的基类(父类)。派生类可以从它的基类那里继承方法和实例变量,并且类可以修改或增加新的方法使之更适合特殊的需要。   3.封装:  封装是把 ...
    Welcome To Kingsoft 姓名: XY 日期: 2007年8月17日  答题时间: 一、请你就C/C++或者JAVA代码行数、注释行数统计工具的实现,描述一下: <!--[if !supportLists]-->1、<!--[endif]-->需要考虑哪些过滤条件?你如何处理? 答:过滤条件:(取得每行并去掉两头的空格后) ⑴空行,行的长度为0;⑵如果是以//开头,为注释行;⑶//在行中,并判断不是在字符串中,即“”中,为代码+注释混合行,//在“”中时为代码行;⑷如果 ...
  =====================handler代码====================================== using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.SessionState; namespace MyHandler { /// <summary> /// Handler1 的摘要说明 /// </summary> ...

DAO层的CRUD

    博客分类:
  • Java
package com.org.core.dao;   import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; import java.util.List;   import com.org.core.pojo.Users; import com.org.core.util.SqlHelper;   @SuppressWarnin ...
import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; /* * @ClassName: SqlHelper */ public class SqlHelper { /** * 设置单例 * 单例模式可以节省资源. */ public static SqlHelper instance = new SqlHelper(); /** * 设置单例的一个实例方法 * ...
using NPOI.HSSF.UserModel; using System.Data.SqlClient; using Model; using System.Collections.Generic; using BLL; using NPOI.SS.UserModel; namespace WebApp { /// <summary> ///@Author:梁继龙 ///@Date:2012/7/28 ///@Description:用NPOI处理Excel一页超过6635行的Bug进行分页 /// 官方:htt ...
  using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using InfoSoftGlobal; using System.Text; using System.Data.SqlClient; using System.Data; namespace MYASP { /// <summary> /// Author:jil ...
  servlet3.0上传 写道 package com.org.servlet3; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.annotation.MultipartConfig; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletReques ...
/**  * @author jilongliang  * 注册的验证.  */ $(function(){
把.exe制作成绿色软件      
Global site tag (gtag.js) - Google Analytics