linux
shell执行有两种方式shell脚本以#!/bin/bash开头,执行shell时先检查首行,在内部以下列方式执行:$/bin/bash
script.sh1. 使用sh执行。 $sh script.sh #脚本位于当前目录下或者 $sh /home/path/script.sh #使...
分类:
系统相关 时间:
2014-05-26 23:16:32
阅读次数:
344
该问题由UAC机制引起,可尝试如下方案:以管理员身份打开Powershell,运行:New-ItemProperty -Path
"registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Syst...
#include int main(void){int i = 1;int j = 100;const
int * temp = &i;printf("%d\n",*temp);i = 2;printf("%d\n",*temp);temp =
&j;printf("%d\n",*temp);ret...
分类:
其他好文 时间:
2014-05-26 23:11:42
阅读次数:
330
之前遇到棘手的BUG总是在处理过后就不管了,导致后面碰到后重复工作太多。现专门开辟一篇日志以记录接下来一路上的DEBUG记录。【C++】1.mt.exe :
general error c101008d: Failed to write the updated manifest to the res...
分类:
其他好文 时间:
2014-05-26 22:30:47
阅读次数:
285
为Python加入默认模块搜索路径方法一:函数加入1) import sys2)
查看sys.path3)
加入sys.path.append("c:\\")方法二:改动环境变量windows用户能够改动系统环境变量PYTHONPATH方法三:添加.pth文件,推荐!在site-packages加入...
分类:
编程语言 时间:
2014-05-26 21:30:47
阅读次数:
333
continue和break的用法一样,直接写上这个单词,后面加一个分号就行比如:continue;break;我们先来谈continue看代码
for (int i=0; i<10; i++) { Console.Write(i); }这个程序的意思输出从0...
分类:
其他好文 时间:
2014-05-26 20:36:46
阅读次数:
351
1
安装python安装python-2.7.6.msi默认在c盘设置环境变量,path后追加c:/python27。可以在命令行直接认识命令python2
安装pyqtPyQt4-4.10-gpl-Py2.7-Qt4.8.4-x32.exe,会自动寻找python路径,并装在python安装目录下...
分类:
其他好文 时间:
2014-05-26 16:21:18
阅读次数:
245
问:在配置文件a.properties中有一行path=C:\test在java中getProperty("path")后,java把\t认为是一个字符TAB。怎样才能取到正确的结果:C:\test呢答:使用C:\\test或者C:/test...properties文件的约定在windows下“/...
分类:
编程语言 时间:
2014-05-26 16:07:14
阅读次数:
318
1 int[] arr = {1,4,2,5,7,3}; 2 int temp = 0; 3 //升序
4 for (int i = arr.length-1; i > 0; --i) { 5 for (int j = 0; j i; j--) {17
if(arr[...
分类:
其他好文 时间:
2014-05-26 15:37:21
阅读次数:
266
Direct request is the simplest method used to request a semaphore. The request behaves as an atomic read and set operation. The result of a request is either to grant the semaphore
to the requesting...
分类:
其他好文 时间:
2014-05-22 17:21:38
阅读次数:
517