摘要:
转自:http://www.manew.com/thread-44136-1-1.html.NET类库System.Drawing提供了一系列的图形函数,但由于其使用的是GDI接口,与DirectX和OpenGL之间不兼容,在unity中默认是不被支持的。但有时候,我们想在Unity中使用一些基于S... 阅读全文
摘要:
1 import java.awt.Frame.*; 2 import java.awt.event.*; 3 import java.awt.*; 4 5 public class Test extends Frame { 6 7 boolean mouseClicked =... 阅读全文
摘要:
1. 一个Java程序中只能包含类,类中只能包含变量和方法,方法中只能包含变量和语句。也就是我们不能把语句(比如for语句)写在类中。2. 一定注意=与==之间的区别,尤其在对boolean进行if判断的过程中,容易出现错误。3. 强制类型转换只能用在基本数据类型之间,(String)c是不对的,应... 阅读全文
摘要:
1 #include 2 #define UPPER 300 3 #define LOWER 0 4 #define STEP 20 5 6 main() 7 { 8 float farh, celsius; 9 10 farh = LOWER;11 celsius = LOWER;12 printf("---C to F---\n");13 while (celsius = LOWER; celsius -= STEP)21 {22 printf("%3.2f %6.2f\n", celsius, (9.0*celsius... 阅读全文
摘要:
1. Thetags made our text bold! The tags made our textitalicize!2.a Always puton the first line. This tells the browser what language it's reading (in this case, HTML).2.b Always puton the next line. This starts the HTML document.2.c Always puton the last line. This ends the HTML document.1 2 3 . 阅读全文
摘要:
在某些时候,我们需要判断两个对象是否相等。Java的每个类都继承于Object类。它使用equals()及hashCode()这两个方法来判断两个Object是否相等。1. equals() 在API中的定义需要满足5点:1 自省:对于任一非null引用x,x.equals(x)应返回true;2 反射:对于任一非null引用x及y,仅在y.equals(x)返回true时,x.equals(y)才返回true;3 传递:对于任一非null引用x、y及z,如果x.equals(y)为true,而且y.equals(z)为true,则x.equals(z)应返回true;4 稳定:对于任一非nu 阅读全文