码迷,mamicode.com
首页 >  
搜索关键字:cant find keyplane    ( 24282个结果
unity中三种调用其他脚本函数的方法
第一种,被调用脚本函数为static类型,调用时直接用脚本名.函数名()。很不实用……第二种,GameObject.Find("脚本所在物体名").SendMessage("函数名");此种方法可以调用public和private类型函数第三种,GameObject.Find("脚本所在物体名").GetComponent<脚本名>().函数名..
分类:其他好文   时间:2014-06-04 12:59:13    阅读次数:307
Linux下挂载iscsi存储
1.检查系统是否安装iSCSIinitiator[root@justin~]#rpm-qa|grepiscsi [root@justin~]# [root@justin~]#mount/dev/cdrom/mnt/ mount:blockdevice/dev/sr0iswrite-protected,mountingread-only [root@justin~]#cd/mnt/ [root@justinPackages]#find.-name*iscsi* ./iscsi-initiator..
分类:系统相关   时间:2014-06-04 12:56:26    阅读次数:731
leetcode--Max Points on a Line
Givennpoints on a 2D plane, find the maximum number of points that lie on the same straight line.public class Solution { /** * This program is used t....
分类:其他好文   时间:2014-06-03 17:05:21    阅读次数:434
map中erase函数的使用
STL的map表里有一个erase方法用来从一个map中删除掉指令的节点eg:map mapTest;typedef map::iterator ITER;ITER iter=mapTest.find(key);mapTest.erase(iter);像上面这样只是删除单个节点,map的形为不会出现...
分类:其他好文   时间:2014-06-03 16:11:29    阅读次数:239
POJ2993——Emag eht htiw Em Pleh
Emag eht htiw Em PlehDescriptionThis problem is a reverse case of the problem 2996. You are given the output of the problem H and your task is to find...
分类:其他好文   时间:2014-06-03 15:33:20    阅读次数:347
【LeetCode】Best Time to Buy and Sell Stock II
Best Time to Buy and Sell Stock IISay you have an array for which theithelement is the price of a given stock on dayi.Design an algorithm to find the ...
分类:其他好文   时间:2014-06-02 15:01:53    阅读次数:305
LeetCode: Interleaving String [097]
【题目】 Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2. For example, Given: s1 = "aabcc", s2 = "dbbca", When s3 = "aadbbcbcac", return true. When s3 = "aadbbbaccc", return false. 【题意】 给定字符串s1,s2,s3, 判断s3是不是s1和s2中的字交叉组合...
分类:其他好文   时间:2014-06-02 10:58:24    阅读次数:211
java 正则
1. matches() 匹配全部Pattern p = Pattern.compile("reg");Matcher m = p.matcher("String");System.out.println(m.matches());2:(matches 和find不要一起用,用reset()吐出来)...
分类:编程语言   时间:2014-06-02 10:19:32    阅读次数:390
Leetcode: Longest Palindromic Substring. java
Given a stringS, find the longest palindromic substring inS. You may assume that the maximum length ofSis 1000, and there exists one unique longest pa...
分类:编程语言   时间:2014-06-02 09:22:03    阅读次数:328
linux删除乱码文件
不知道大家有没有碰到这种文件,因为是乱码,文件无法删除,这时我们就可以考虑用下面的命令进行删除文件或目录 ls -i //列出文件节点 find ./ -inum XXX(节点号) -print -exec rm -rf {} \; //删除节点号文件 find . -inum XXXX(节点号) ...
分类:系统相关   时间:2014-06-02 06:37:25    阅读次数:370
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!