码迷,mamicode.com
首页 > 2015年07月23日 > 全部分享
设置枚举属性,并且获取到属性
通过枚举来获取属性,和通过枚举的值来获取属性public enum TestEmun { [Remark("AAA")] aaa=1, [Remark("BBB")] bbb=2, [Remark("CCC")] ccc=3 }...
分类:其他好文   时间:2015-07-23 23:22:08    阅读次数:210
Android 动画之RotateAnimation应用详解
近期要写的一个界面中包含一个旋转的动画。 所以就去网上找了下资料,原文出处:http://www.jb51.net/article/32341.htm本节讲解RotateAnimation 动画, RotateAnimation (float fromDegrees, float toDegrees...
分类:移动开发   时间:2015-07-23 23:22:04    阅读次数:197
[翻译] popping
https://github.com/schneiderandre/poppingPopping is a collection of animation examples for iOS apps. Almost all of them were created using the Faceboo...
分类:其他好文   时间:2015-07-23 23:23:26    阅读次数:193
Intersection of Two Linked Lists (判断两个单链表是否相交)
题目描述:Write a program to find the node at which the intersection of two singly linked lists begins.For example, the following two linked lists:A: ...
分类:其他好文   时间:2015-07-23 23:20:54    阅读次数:203
模拟彩票购票之——双色球
双色球当今时代很是流行,笔者觉得这种游戏比较简单适合于我这样初级水平的人研究,所以闲暇之余将自己思路展现给大家,不能说是分享,因为并非佳品。目的很单纯,就是扔一块硬臭砖头,希望能有幸看到玉石的纯洁光芒。对于其中的不足,欢迎读者的批评和赐教。双色球的投注规则有很多,这里只研究单注的情形。双色球单注下注...
分类:其他好文   时间:2015-07-23 23:21:18    阅读次数:230
[LeetCode] Search in Rotated Sorted Array
题目要求: Suppose a sorted array is rotated at some pivot unknown to you beforehand. (i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2). You are given ...
分类:其他好文   时间:2015-07-23 23:20:54    阅读次数:122
快度排序,还未验错
int partition(int *array,int p,int r){ int partElement = *(array+r); int lastSmallerIndex = p-1; for(int j = p;j<=r-1;j++) { if(*(a...
分类:编程语言   时间:2015-07-23 23:21:39    阅读次数:149
重建树
You have just finished a compiler design homework question where you had to find the parse tree of an expression. Unfortunately you left your assignme...
分类:其他好文   时间:2015-07-23 23:21:50    阅读次数:278
C#检查一段代码的消耗时间
0.0 如果你想检查某一个函数循环的时间 System.Diagnostics.Stopwatch stopwatch = new System.Diagnostics.Stopwatch(); stopwatch.Start(); //这里是你想检测的时间 stopwatch.Stop(); Sy...
分类:Windows程序   时间:2015-07-23 23:22:29    阅读次数:218
Openssl asn1parse命令
一、简介 asn1parse命令是一种用来诊断ASN.1结构的工具,也能用于从ASN1.1数据中提取数据 二、语法 openssl asn1parse [-inform PEM|DER] [-in filename] [-out filename] [-noout] [-offset number]...
分类:其他好文   时间:2015-07-23 23:21:22    阅读次数:321
Vim练级攻略(转)
转自平凡的世界:http://www.ccvita.com/前言今天看到这篇文章,共鸣点非常多。它把Vim使用分为4个级别,目前我自己是熟练运用前面三级的命令,在培养习惯使用第四级。完全就是我这一年来坚持使用Vim的过程。所以不管怎么我要转载这篇文章。翻译自《Learn Vim Progressiv...
分类:系统相关   时间:2015-07-23 23:19:40    阅读次数:307
2015第30周四Java日志组件
Java 日志 API从功能上来说,日志 API 本身所需求的功能非常简单,只需要能够记录一段文本即可。API 的使用者在需要进行记录时,根据当前的上下文信息构造出相应的文本信息,调用 API 完成记录。一般来说,日志 API 由下面几个部分组成:记录器(Logger):日志 API 的使用者通过记...
分类:编程语言   时间:2015-07-23 23:20:46    阅读次数:289
Web前端开发神器--WebStorm(JavaScript 开发工具) 8.0.3 中文汉化破解版
WebStorm(JavaScript 开发工具) 8.0.3 中文汉化破解版http://www.jb51.net/softs/171905.htmlWebStorm 是jetbrains公司旗下一款JavaScript 开发工具。被广大中国JS开发者誉为“Web前端开发神器”、“最强大的HTML...
分类:编程语言   时间:2015-07-23 23:19:36    阅读次数:150
LeetCode#66 Plus One
Problem Definition:Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most sign...
分类:其他好文   时间:2015-07-23 23:19:21    阅读次数:130
PHP 数组
数组去重$bb=array_unique($aa);去重后键还是保留原来的,如果要重置键需要array_values处理$arr=array_values($arr);这样就会重新排列键in_array($str,$arr);判断$str是否在数组$arr中,返回值为TRUE或者FALSE往数组中追...
分类:编程语言   时间:2015-07-23 23:18:36    阅读次数:129
Windows 7 上安装Visual Studio 2015 失败解决方案
在windows 7 操作系统上安装Visual Studio 2015,发生下面的错误:解决方案:可以手动安装目录packages\Patch 下根据操作系统32,64 位系统安装对应的补丁:安装完成补丁KB2999226,就可以正常的安装Visual Studio 2015
分类:Windows程序   时间:2015-07-23 23:21:04    阅读次数:726
define
【例 5.3】用 always 过程语句描述的简单算术逻辑单元`define add 3'd0`define minus 3'd1`define band 3'd2`define bor 3'd3`define bnot 3'd4程序文本- 4 -module alu(out,opcode,a,b)...
分类:其他好文   时间:2015-07-23 23:20:29    阅读次数:212
2135条   上一页 1 ... 8 9 10 11 12 13 14 ... 126 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!