SMCalloutView 是一个轻量级的标注视图类,模仿自 iOS 的 UICalloutView。 项目主页: http://www.open-open.com/lib/view/home/1349943728119
WilliamChart是基于Views的Android图表类库,帮助开发者在Android应用中实现折线图、柱状图和堆叠柱状图。数值发生变化时图表也会以动画的效果发生变化。 At the moment
并允许使用 null 值和 null 键。(除了非同步和允许使用 null 之外,HashMap 类与 Hashtable 大致相同。)此类不保证映射的顺序,特别是它不保证该顺序恒久不变。 此实现
supports external stylesheets, either local or through http/ftp (via fopen-wrappers) supports complex tables
原文: http://shiyanjun.cn/archives/1398.html k-medoids聚类算法,即k-中心聚类算法,它是基于k-means聚类算法的改进。我们知道,k-mea
,它的变量没有严格类型限制 JS是面向对象语言,但 没有明确的类的概念 (虽然有class关键字,然而目前并没有什么卵用) JS虽然没有类,但可以通过一些方法来模拟类以及实现类的继承。 一切皆对象,还先从对象说起。
Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
class Ender{ private $enkey;//加密解密用的密钥 //构造参数是密钥 public function __construct($key=''){ if(!$key){ $this->enkey=$key; } } //设置密钥 public function set_key($key){ $this->enkey=$key; } private function key
/*PHP图片加文字水印类库 该类库暂时只支持文字水印,位置为右下角,颜色随机 调用方法: 1、在需要加水印的文件顶部引入类库: include_once 'imageClass.php'; 2、声明新类: $tpl=new
using System; using System.Xml; using System.Configuration; using System.Data; using System.Collections; using System.IO; namespace YZControl { public class NewXmlControl : Object { protected string s
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Web; using ICSharpCode.SharpZipLib.Zip; namespace GzRMIS.Main.Business { public class ZipHelper { /// <
===*/ /* 文件名:BaseLogic.class.php */ /* 概要: 数据处理公共类. */ class BaseLogic extends MyDB { protected $tabName;
php+redis缓存类
github:https://github.com/twotoasters/JazzyListView 使用这个类库还是很简单的,引入它的库,使用库里所定义的ListView和GridView即可。 如
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Text; using System.Data; using System.Collections; using MySql.Data.Common; using MySql.Data.MySqlClie
类文件 * modify 2015/06/12 */ class DBConnect { private $dbname = null;
<?php class SysCrypt { private $crypt_key; // 构造函数 public function __construct($crypt_key) { $this -> crypt_key = $crypt_key; } public function php_encrypt($txt) { srand((double)microtime() * 1000000)
一个简单的PDO类封装。。仅供学习交流 PdoDb 数据库类
SimpleDao.class <?php //require_once('FirePHPCore/FirePHP.class.php'); //$firephp = FirePHP::getInstance(true); // debugger in firefox class SimpleDao { private $_table = null; private static $_con =
P13 JFreeChart各个类的常用方法的研究 < 一>JFreeChart 类 这个类是JFreeChart的基础类,可以利用ChartFactory来生成不同的 JFreeChart的具体类,相当于JFreeChart是所有图表的父类