欢迎来到unity学习、unity培训、unity企业培训教育专区,这里有很多Unity3D资源、Unity3D培训视频、Unity3D教程、Unity3D常见问题、Unity3D项目源码,【狗刨学习网】unity极致学院,致力于打造业内unity3d培训、学习第一品牌。
人物和摄像机之间存在例如墙壁等的阻挡时 可以修改阻挡材质的alpha呈现半透明状
using UnityEng...
分类:
编程语言 时间:
2015-03-14 17:04:58
阅读次数:
300
1.布局实现:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizont...
分类:
移动开发 时间:
2015-03-14 17:06:09
阅读次数:
1416
僵尸进程处理1)通过忽略SIGCHLD信号,避免僵尸进程 在server端代码中添加 signal(SIGCHLD, SIG_IGN); 2)通过wait/waitpid方法,解决僵尸进程signal(SIGCHLD,onSignalCatch);
void onSignalCatch(int signalNumber)
{
wait(NULL);
}3) 如果多个客户端同时...
分类:
其他好文 时间:
2015-03-14 17:05:09
阅读次数:
225
把只包含质因子2、3和5的数称作丑数(Ugly Number),例如:2,3,4,5,6,8,9,10,12,15,等,习惯上我们把1当做是第一个丑数。
写一个高效算法,返回第n个丑数。
import static java.lang.Math.min;
import static java.lang.System.out;
public class UglyNumber {
...
分类:
其他好文 时间:
2015-03-14 17:04:26
阅读次数:
123
Problem Description
The most important part of a GSM network is so called Base Transceiver Station (BTS). These transceivers form the areas called cells (this term gave the name to the cellular phone) and every phone connects to the BTS with the strongest ...
分类:
其他好文 时间:
2015-03-14 17:03:59
阅读次数:
201
清理SYSAUX表空间的WRH$_LATCH_CHILDREN表...
分类:
其他好文 时间:
2015-03-14 17:03:16
阅读次数:
169
五种I/O模型介绍(1)阻塞I/O[默认] 当上层应用App调用recv系统调用时,如果对等方没有发送数据(Linux内核缓冲区中没有数据),上层应用Application1将阻塞;当对等方发送了数据,Linux内核recv端缓冲区数据到达,内核会把数据copy给用户空间。然后上层应用App解除阻塞,执行下一步操作。 (2)非阻塞I/O[少用] 上层应用App将套接字设置成非阻塞模式, 然...
分类:
其他好文 时间:
2015-03-14 17:05:48
阅读次数:
220
题目:Card Game CheaterTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 103 Accepted Submission(s): 74 Problem DescriptionAdam and Eve play a card game...
分类:
其他好文 时间:
2015-03-14 17:04:27
阅读次数:
461
1, commnad文件:
--update_package=/sdcard/dload/update.zip
实际需改成你下载的包的位置
2, command写到
/cache/recovery/下面
3,执行参数STring recovery的reboot
((PowerManager)getSystemService("power")).reboot("r...
分类:
其他好文 时间:
2015-03-14 17:02:44
阅读次数:
281
字符串替换
时间限制:3000 ms | 内存限制:65535 KB
难度:2
描述编写一个程序实现将字符串中的所有"you"替换成"we"
输入输入包含多行数据
每行数据是一个字符串,长度不超过1000
数据以EOF结束
输出对于输入的每一行,输出替换后的字符串
样例输入
you are what you do
样例输出
we a...
分类:
其他好文 时间:
2015-03-14 17:03:55
阅读次数:
124
#include
#include
using namespace std;
int main()
{
unsigned short A =0xABCD;
unsigned short B,C,D;
cout<<setiosflags(ios::uppercase)
<<hex
<<"A =0x "
<<A<<endl;
B = (A<<8)&0xff00;
C ...
分类:
其他好文 时间:
2015-03-14 17:04:44
阅读次数:
121
先上图:
使用vc++6.0开发
源码:http://download.csdn.net/detail/h1023417614/8501223
//view类的头文件
// game1View.h : interface of the CGame1View class
//
///////////////////////////////////////////////////...
分类:
编程语言 时间:
2015-03-14 17:03:40
阅读次数:
176
题意:判断有无环路;
思路:拓扑排序;
两种写法:
结构体+指针:
#include
#include
#include
using namespace std;
int n,m;
struct node{
int du;
node *next;
}q[50010];
int topo()
{
node *p;
int *shu=new int[50010]...
分类:
其他好文 时间:
2015-03-14 17:03:52
阅读次数:
142
简介
本篇主要是介绍opencv的FloodFill(漫水填充)和基于它实现的物体选取。
FloodFill使用
FloodFill函数
C++: int floodFill(InputOutputArray image, InputOutputArray mask,
Point seedPoint, Scalar newVal,...
分类:
其他好文 时间:
2015-03-14 17:03:23
阅读次数:
1007
基于UDP模式的C/S通信
这是Client端的:
import java.net.*;
import java.io.*;
public class UDPClient{
public static void main(String args[]){
DatagramSocket socket = null;
DatagramPacket packet = null;
Inet...
分类:
编程语言 时间:
2015-03-14 17:02:13
阅读次数:
149
TCP粘包问题由于TCP协议是基于字节流且无边界的传输协议, 因此很有可能产生粘包问题, 问题描述如下 对于Host A 发送的M1与M2两个各10K的数据块, Host B 接收数据的方式不确定, 有以下方式接收: 先接收M1, 再接收M2(正确方式) 先接收M2, 再接收M1(错误) 一次性收到20k数据(错误) 分两次收到,第一次15k,第二次5k(错误) 分两次收到...
分类:
其他好文 时间:
2015-03-14 17:02:51
阅读次数:
138
拦截导弹题目某国为了防御敌国的导弹袭击,发展出一种导弹拦截系统。但是这种导弹拦截系统有一个缺陷:虽然它的第一发炮弹能够到达任意的高度,但是以后每一发炮弹都不能高于前一发的高度。某天,雷达捕捉到敌国的导弹来袭。由于该系统还在试用阶段,所以只有一套系统,因此有可能不能拦截所有的导弹。输入数据:
第一行为一个整数N,表示飞来的导弹个数,N<=100000
第二行为N个整数,依次表示导弹飞来的高度,高度...
分类:
其他好文 时间:
2015-03-14 17:01:19
阅读次数:
143