You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single ...
分类:
其他好文 时间:
2014-06-28 10:45:34
阅读次数:
225
给类添加扩展方法1、定义一个类Servicepublic class Service { private string _name; public string Name { get { return _name; } ...
分类:
其他好文 时间:
2014-06-28 10:44:20
阅读次数:
132
using UnityEngine;using System;using System.IO;using System.Diagnostics;public class Test : MonoBehaviour{ //7z程序的程序目录 private string _7zExeUrl ...
分类:
其他好文 时间:
2014-06-28 10:39:29
阅读次数:
168
// draw callback that will tweak the far clipping plane just // before rendering a drawable. struct OverrideNearFarValuesCallback : public osg::Drawa....
分类:
其他好文 时间:
2014-06-28 10:38:52
阅读次数:
258
/*
ID:kevin_s1
PROG:runround
LANG:C++
*/
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
//直接枚举即可
//gobal variable...
分类:
其他好文 时间:
2014-06-22 11:06:45
阅读次数:
185
一、内核官网 linux内核的官方网站http://www.kernel.org/ 二、切换界面 图形界面-命令行界面 Ctrl+Alt+Fn(F1、F2、F3、F4、F5、F6) 命令行界面-图形界面 Alt+F7 字符-字符 Alt+Fn(F1、F2、F3、F4、F5、F6) 三、常见目录作用 ...
分类:
其他好文 时间:
2014-06-22 11:00:44
阅读次数:
206
在~/.bash_profile里面添加export HISTSIZE=1000From: http://bbs.chinaunix.net/thread-3612167-1-1.html
分类:
其他好文 时间:
2014-06-22 10:49:25
阅读次数:
249
需求:
使用可以上网的外网pc(win7操作系统),远程访问公网tp-link下的的mac电脑
环境:
mac os -----tp-link-----------pc
工具:
putty TightVNC 或者 TeamViewer
方法一
方法一:
使用TeamViewer 9,傻瓜式的访问,需要注意的是版本需要尽量保持最新的,否则会导致连接不上。这也是比较简单的...
分类:
其他好文 时间:
2014-06-22 08:41:20
阅读次数:
353
Android的设置或者登陆或者其他的一些主窗体要展示的功能需要用到sliding的效果,下面就叫大家怎么做。直接上代码!!MainActivity部分:packagenet.ting.sliding;
importandroid.app.Activity;
importandroid.os.Bundle;
importandroid.view.View;
importandroid.view.View.O..
分类:
移动开发 时间:
2014-06-22 08:15:28
阅读次数:
378
from:unix高级环境编程
unix/linux中共享内存是最高效的ipc方式。
有几种使用方式:
1)mmap /dev/zero设备:
fd = open("/dev/zero", O_RDWR);
area = mmap(0, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
close(fd);
加入MAP_SHARE...
分类:
其他好文 时间:
2014-06-22 06:21:16
阅读次数:
215