1 // 2 // AppDelegate.m 3 // PicWall 4 // 5 // Created by wky on 07/10/2017. 6 // Copyright © 2017 vector. All rights reserved. 7 // 8 9 #import "AppD... ...
分类:
其他好文 时间:
2017-10-07 17:38:00
阅读次数:
217
1.1 Reference define The reference variable is an alias(So, not allocate memory), Once the reference is initialized to a variable, you can use the ref ...
分类:
编程语言 时间:
2017-09-30 10:10:15
阅读次数:
259
转自金角大王 本节内容 列表、元组操作 字符串操作 字典操作 集合操作 文件操作 字符编码与转码 1. 列表、元组操作 列表是我们最以后最常用的数据类型之一,通过列表可以对数据实现最方便的存储、修改等操作 定义列表 ? 1 names = ['Alex',"Tenglan",'Eric'] 通过下标 ...
分类:
编程语言 时间:
2017-09-29 15:05:51
阅读次数:
311
using System; using System.Collections.Generic; using System.Linq; using AutoMapper; using System.Collections; namespace DanaZhangCms.Domain.AutoMappe... ...
分类:
移动开发 时间:
2017-09-29 14:05:17
阅读次数:
212
将指定字符串中的汉字转换为拼音缩写,其中非汉字保留为原字符 ...
create function sp_split( @c nvarchar(4000), @splitchar nvarchar(1) ) returns @table table (word nvarchar(max)) as begin declare @temp nvarchar(200) s... ...
分类:
数据库 时间:
2017-09-28 21:14:30
阅读次数:
236
摘要: 技术在于交流、沟通,本文为博主原创文章转载请注明出处并保持作品的完整性 上一节介绍了仿函数适配器,这节主要介绍容器适配器和迭代器适配器的概念,其实容器适配器和迭代器其适配器就是封装了一些其他class的方法,非常好理解. 如果你想让一个calss拥有另一个class的功能,你都可以这样做:1 ...
分类:
其他好文 时间:
2017-09-28 01:06:15
阅读次数:
283
CREATE TABLE #table1(id INt,title VARCHAR(50))INSERT INTO #table1 (id,title) SELECT 1,'afafaa'UNION ALL SELECT 2,'dsaf'UNION ALL SELECT 3,'dsssaf'UNIO ...
分类:
其他好文 时间:
2017-09-27 22:28:39
阅读次数:
243