码迷,mamicode.com
首页 >  
搜索关键字:one    ( 27922个结果
lua代码设置unity对象的基础属性
设置对象的父节点: wall.transform:SetParent(GameObject.Find("Walls").transform) 设置颜色: wall:GetComponent("Image").color = UnityEngine.Color(111/255, 89/255, 89/ ...
分类:编程语言   时间:2016-12-16 19:40:18    阅读次数:221
常用的正则表达式
function oclick(){ var b; var value = $("#fuck").val(); var mobile = /^1[358]\d{9}$/; /* 手机号 */ var phone = /^0(\d{3,4})\-(\d{7,8})$/; /* 座机号 */ var e ...
分类:其他好文   时间:2016-12-16 19:03:51    阅读次数:157
单选 复选按钮 样式
非原创 ...
分类:其他好文   时间:2016-12-16 17:08:03    阅读次数:203
Leetcode-268 Missing Number
#268. Missing Number Given an array containing n distinct numbers taken from 0, 1, 2, ..., n, find the one that is missing from the array. For example ...
分类:其他好文   时间:2016-12-16 16:52:45    阅读次数:156
TreeNode(包含读出文件里的信息)
public partial class Tree : Form { public Tree() { InitializeComponent(); } private void Tree_Load(object sender, EventArgs e) { string path = @"d:\a\ ...
分类:其他好文   时间:2016-12-16 14:56:37    阅读次数:201
Leetcode: Plus One Linked List
Use Stack, O(N) space Two Pointers, O(1) space i stand for the right-most non-9 bit, where if there's a carry, i is incremented and the bits after i w ...
分类:其他好文   时间:2016-12-16 14:53:25    阅读次数:149
mobx @computed的解读
写在前面:我一开始看不懂官网的@computed的作用,因为即使我把@computed去掉,依然能正确的report,然后我百度谷歌都找不到答案,下面都是我自己的理解,如果是有问题的,不对的,请务必留言帮我指出。 官网dome: 运行结果: 我的发现: 请留意第三行,改变了completed,先执行 ...
分类:其他好文   时间:2016-12-16 14:35:34    阅读次数:327
DevExpress 隐藏Ribbon中barbuttonItem的SuperTip
public frmMain() { InitializeComponent(); ribbonControl1.Manager.HighlightedLinkChanged += Manager_HighlightedLinkChanged; pub_form = this; } void Man ...
分类:其他好文   时间:2016-12-16 12:06:17    阅读次数:233
mysql one thread cpu 100%
昨天晚上,运维过来说有台生产服务器的mysql cpu一直100%,新的客户端登录不了,但是已经在运行的应用都正常可用。 登录服务器后,top -H看了下,其中一个线程的cpu 一直100%,其他的几乎都空闲。 MySQL thread id 14560536, OS thread handle 0 ...
分类:数据库   时间:2016-12-16 09:55:26    阅读次数:353
NSSet
// // main.m // 09-集合 // // Created by apple on 14-3-21. // Copyright (c) 2014年 apple. All rights reserved. // #import <Foundation/Foundation.h> int m ...
分类:其他好文   时间:2016-12-16 09:46:59    阅读次数:230
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!