码迷,mamicode.com
首页 >  
搜索关键字:public sale    ( 83084个结果
NET简单的一个画图程序
using System;using System.Drawing;//HttpUtility.UrlEncode/// ///Curve 的摘要说明/// public class Curve{ public Curve() { // //TODO: 在此处...
分类:Web程序   时间:2014-05-10 07:36:33    阅读次数:491
模型层的生成
在【CodeSmith快速入门之三:数据库我来了】中,我们介绍了对数据库的基本访问,在本章将会带大家进行模型层的编写。首先先要了解模型层(实体层、VO层)的组成,如下所示:public class 实体名{ 私有字段声明; 构造函数; 公共属性;}注:--私有字段声明:一般是先声明主键,再是非主键字...
分类:其他好文   时间:2014-05-10 07:14:07    阅读次数:429
java 语言实现选择排序
public class TestSelectSort{ public static void main(String[] args){ int[] sortArray = new int[]{5,7,4,2,9,8,3,6}; System.out.println("before sortin.....
分类:编程语言   时间:2014-05-10 05:04:52    阅读次数:322
LeetCode--Reverse Integer
//#include #include #include //using namespace std; //const int MAXN=10; //int Stack[MAXN]; stack s; class Solution { public: int getNumber(int x) { //int lengthOfStack=0;...
分类:其他好文   时间:2014-05-10 04:45:29    阅读次数:231
java程序运行分析
使用工具:Eclipse Stardard 4.32版本(window7环境) 今天我们通过一个及其简单的例子来分析一个java程序是如何在我们的及其上跑起来的。部分内容是参考其他人的,会在参考的地方注明。 我的测试代码部分如下: public class Test { public static void main(String[] args) { new Test()...
分类:编程语言   时间:2014-05-10 04:40:10    阅读次数:414
算法-倒置字符串
/** * * @description * String utils * @author Czp * @version 1.0(2014-5-9) * */public class StringUtil { /** * @description: * ...
分类:其他好文   时间:2014-05-10 03:21:53    阅读次数:272
java 语言实现插入排序
public class InsertSort{ public static void main(String[] args){ int[] sortArray = new int[]{5,7,4,2,9,8,3,6}; System.out.println("before sorting ,t.....
分类:编程语言   时间:2014-05-10 03:13:15    阅读次数:342
解决ScrollView中的ListView无法显示全
问题描述: ListView加入到ScrollView中之后,发现只能显示其中一条,具体原因得看一下源代码。现在先贴一下方案 (转自:http://blog.csdn.net/hitlion2008/article/details/6737459) Example: public class Vie...
分类:其他好文   时间:2014-05-10 02:55:53    阅读次数:296
Android--Bitmap处理、圆角、圆形
/** * 转换图片成圆形 * * @param bitmap * 传入Bitmap对象 * @return */ public static Bitmap toRoundBitmap(Bitmap bitmap)...
分类:移动开发   时间:2014-05-10 02:46:10    阅读次数:436
Threading.Tasks.Task多线程 静态全局变量(字典) --只为了记录
--------------------------------------------------------------后台代码------------------------------------------ public JsonResult ImportPDF(Int64 id) {.....
分类:编程语言   时间:2014-05-10 02:36:30    阅读次数:707
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!