1.概述 单点登录(Single Sign On),简称为 SSO,是目前比较流行的企业业务整合的解决方案之一。SSO的定义是在多个应用系统中,用户只需要登录一次就可以访问所有相互信任的应用系统。 耶鲁大学(yale)开发的单...
分类:
其他好文 时间:
2015-06-29 11:51:27
阅读次数:
475
环境:Win7 64位 + Matlab R2010a本次分析的函数为im2uint8,这个函数在图像处理中要用到,主要把图像数据类转换到uint8uint8函数有效的输入的图像数据类为:logical,uint8,uint16,double,single和int16如果输入类型为logical,则...
分类:
其他好文 时间:
2015-06-29 11:24:08
阅读次数:
556
Web API从MVC4开始出现,可以服务于Asp.Net下的任何web应用,本文将介绍Web api在单页应用中的使用。什么是单页应用?Single-Page Application最常用的定义:一个最初内容只包含html和JavaScript,后续操作通过Restful风格的web服务传输...
Description: Given an array of integers, every element appears three times except for one. Find that single one.只有一个出现一次的数字,其他的都出现了3次,找出出现一次的那个数字。pub....
分类:
其他好文 时间:
2015-06-28 00:02:00
阅读次数:
111
//多线程下的单例设计模式
class Sing
{
//饿汉式不存在安全问题,因为其不是线程同步的
private static Sing s = new Sing();
private Sing(){}
public static Sing getInstance()
{
return s;
}
}
class Single
{
private static Single ...
分类:
编程语言 时间:
2015-06-27 09:52:30
阅读次数:
129
【LeetCode】Add Two Numbers
问题描述You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit....
分类:
其他好文 时间:
2015-06-26 09:26:14
阅读次数:
128
先看下面的FMX.Layouts.pas中一段代码procedure TCustomScrollBox.MouseDown(Button: TMouseButton; Shift: TShiftState; X, Y: Single);begin FMouseEvents := True; i...
分类:
编程语言 时间:
2015-06-25 21:08:45
阅读次数:
565
Wildcard Matching
Implement wildcard pattern matching with support for '?' and '*'.
'?' Matches any single character.
'*' Matches any sequence of characters (including the empty sequence).
The ...
分类:
其他好文 时间:
2015-06-25 15:35:29
阅读次数:
123
Description:Given an array of integers, every element appears twice except for one. Find that single one.找出只出现一次的数。public class Solution { public i...
分类:
其他好文 时间:
2015-06-25 00:06:10
阅读次数:
179
前言这几天,第三轮全站优化结束,测试项目在2G首屏载入速度取得了一些优化成绩,对比下来有10s左右的差距:这次优化工作结束后,已经是第三次大规模折腾公司框架了,这里将一些自己知道的移动端的建议提出来分享下,希望对各位有用文中有误请您提出,以免误人自误技术选型单页or多页spa(single page...
分类:
移动开发 时间:
2015-06-24 23:57:22
阅读次数:
276