1,文本框的创建,有如下几个样式: UITextBorderStyle.None:无边框 UITextBorderStyle.Line:直线边框 UITextBorderStyle.RoundedRect:圆角矩形边框 UITextBorderStyle.Bezel:边线+阴影1234var te....
分类:
编程语言 时间:
2015-09-25 16:12:32
阅读次数:
183
之前一直都在用数据库的驱动jar包,却没有仔细看过。只知道Class.forName();去装载驱动类。今天无意间想到Class.forName();不就是装载类嘛,难道引用的jar包里的类不会在虚拟机启动的时候被直接装载嘛?然后写了点代码做了测试: 1 package com.mariadb.te...
分类:
数据库 时间:
2015-09-24 22:51:48
阅读次数:
302
package com.feiruo.Calendar.LunderCalendar{/**@ClassName: package:com.feiruo.Calendar.LunderCalendar::LunarDate*@INTRO: Calculating lunar and solar te...
分类:
其他好文 时间:
2015-09-24 22:39:46
阅读次数:
300
RFID (Radio Frequency Identification): A TutorialContents:Introduction to Radio Frequency Identification-RFIDWhat is RFIDCompare RFID with Bar Code Te...
分类:
其他好文 时间:
2015-09-22 06:32:26
阅读次数:
292
问题描述HZ偶尔会拿些专业问题来忽悠那些非计算机专业的同学。今天测试组开完会后,他又发话了:在古老的一维模式识别中,常常需要计算连续子向量的最大和,当向量全为正数的时候,问题很好解决。但是,如果向量中包含负数,是否应该包含某个负数,并期望旁边的正数会弥补它呢?例如:{6,-3,-2,7,-15,1,2,2},连续子向量的最大和为8(从第0个开始,到第3个为止)。你会不会被他忽悠住?算法分析有一个te...
分类:
编程语言 时间:
2015-09-21 01:38:25
阅读次数:
173
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Te...
方法1: public class test0920{ public static void swap(int[] arr,int i,int j){ int temp=arr[i]; arr[i]=arr[j]; arr[j]=te...
分类:
编程语言 时间:
2015-09-20 21:57:06
阅读次数:
143