1.如果某个菜单被删除了,恢复方法:在菜单栏空白部分右击->customizing PCB Editor->toolbars->选中需要恢复的选项点击restore即可。2.键盘上的+号键可以切换层。3.将板子切为keep out layer 的形状的方法:design->Board Shope->...
分类:
其他好文 时间:
2014-08-20 22:19:22
阅读次数:
751
A squarenumber is an integer number whose square root is also an integer. For example1, 4, 81 are some square numbers. Given two numbers a and b you will have tofind out how many square numbers are th...
分类:
其他好文 时间:
2014-08-20 16:28:22
阅读次数:
151
Euler discovered the remarkable quadratic formula:
n² + n + 41
It turns out that the formula will produce 40 primes for the consecutive values n = 0 to 39. However, when n = 40, 402 + 40 + 41 = 40...
分类:
其他好文 时间:
2014-08-20 16:21:12
阅读次数:
244
mutil render targetPixel shder输出一个结构体Out.f4ColorOut.f4Normal这步在渲染物体的shader里在applicationsetcolortarget(surfColor,0)setcolortarget(surfNormal,1)这两步就可以 P...
分类:
其他好文 时间:
2014-08-20 15:59:12
阅读次数:
175
Apart out there ghd straightener australia primary reasons dryness may result out of excessive hair straightener ghd usage of chemicals on the hair. P...
分类:
其他好文 时间:
2014-08-20 15:39:32
阅读次数:
128
操作
Change operations:
0 a b change all characters into '0's in [a , b]
1 a b change all characters into '1's in [a , b]
2 a b change all '0's into '1's and change all '1's into '0's in [a, b]
Out...
分类:
其他好文 时间:
2014-08-20 12:36:52
阅读次数:
392
这里是将pc作为server,设备作为客户端。Server端代码:publicstaticfinalStringSERVERIP="192.168.0.2";publicstaticfinalintSERVERPORT= 51706;publicvoidrun(){try{System.out.pr...
分类:
移动开发 时间:
2014-08-20 12:21:02
阅读次数:
250
一般toString()方法会应用在自己bean类中。根据需要在重写的toString方法中组织自己想要显示的当前对象的信息。比如按一定规则格式返回所以属性的名称及值。当你要读取关于对象的一些有用细节时,可以在对象上调用toString()。如,当把一个对象引用传递给System.out.print...
分类:
其他好文 时间:
2014-08-20 12:04:22
阅读次数:
209
思路:用两个栈,一个用于接收(in),一个用于输出(out),输出前如果out为空需要将in中的数据导入out。import java.util.Stack;//用两个stack设计一个队列 p142public class MyQueue { Stack in; Stack out; ...
分类:
其他好文 时间:
2014-08-20 01:22:06
阅读次数:
204
结合之前实现的 maxStack 和 用两个stack 实现一个Queue, 实现 MaxQueueimport java.util.Stack;public class MaxQueue { MaxStack in = new MaxStack(); MaxStack out = ne...
分类:
其他好文 时间:
2014-08-20 01:18:46
阅读次数:
229