摘要:
kk 阅读全文
随笔档案-2017年12月
Big data
2017-12-17 23:04 by 沈橙Anei, 573 阅读, 收藏, 编辑
摘要:
Big data is data sets that are so voluminous and complex that traditional data processingapplication software are inadequate to deal with them. Big da 阅读全文
Cloud computing
2017-12-16 21:24 by 沈橙Anei, 732 阅读, 收藏, 编辑
摘要:
Cloud computing is an information technology (IT) paradigm that enables ubiquitous access to shared pools of configurablesystem resources and higher-l 阅读全文
Hope
2017-12-15 21:06 by 沈橙Anei, 153 阅读, 收藏, 编辑
摘要:
life doesn't always give us the joys we want. we don't always get our hopes and dreams, and we don't always get our own way. but don't give up hope, b 阅读全文
Sky
2017-12-13 18:41 by 沈橙Anei, 295 阅读, 收藏, 编辑
摘要:
import java.awt.*;import javax.swing.*;import java.awt.event.*;public class Sky extends JLabel implements ActionListener { //标签类JLabel的子类--刻画天空 Earth 阅读全文
MyEclipse 10中文汉化教程
2017-12-12 22:31 by 沈橙Anei, 1578 阅读, 收藏, 编辑
摘要:
MyEclipse 10中文汉化教程 切记:安装目录不要出现带空格的文件夹 1:把汉化包里的language的文件夹复制到MyEclipse 10里面的Common文件夹里(一般里面是没有Common这个文件的,如果没有自己创建一个)。看准了 在MyEclipse 10同级下也有一个Common文件 阅读全文
减法
2017-12-11 21:58 by 沈橙Anei, 162 阅读, 收藏, 编辑
摘要:
data segmentdata1 dw 5311h,8a13h ;表示数据8a135311hdata2 dw 4783h,9526h ;表示数据95264783hresult dw 2 dup(?) ; 存放多字节减法的结果data ends code segment assume cs:code 阅读全文
ObjectClass
2017-12-08 16:36 by 沈橙Anei, 168 阅读, 收藏, 编辑
摘要:
import java.util.Date;class Rect { //Rect类没有成员方法toString()--为什么下面的对象rect可以调用? double width,height,area; public double getArea() { area=height*width; r 阅读全文
GetMemory
2017-12-07 16:44 by 沈橙Anei, 216 阅读, 收藏, 编辑
摘要:
//GetMemory.javaclass GetMemory{ public static void main(String args[]) { Runtime rt = Runtime.getRuntime(); //获得自动创建的Runtime类的对象 long mem1, mem2; Int 阅读全文
MyWindow
2017-12-05 09:08 by 沈橙Anei, 340 阅读, 收藏, 编辑
摘要:
import javax.swing.*;import java.awt.*;public class MyWindow { public static void main(String args[]) { JFrame window1=new JFrame("第一个窗口"); //这里MyWind 阅读全文
BeijingPeople
2017-12-04 23:18 by 沈橙Anei, 276 阅读, 收藏, 编辑
摘要:
public class BeijingPeople extends ChinaPeople{ public void averageHeight(){ height=172.5; System.out.println("北京人的平均身高:"+height); } public void avera 阅读全文
MobileShop
2017-12-03 23:43 by 沈橙Anei, 558 阅读, 收藏, 编辑
摘要:
class MobileShop{ InnerPurchaseMoney purchaseMoney1; InnerPurchaseMoney purchaseMoney2; private int mobileAmount; MobileShop(){ purchaseMoney1=new Inn 阅读全文
People
2017-12-01 21:15 by 沈橙Anei, 137 阅读, 收藏, 编辑
摘要:
public class People{ protected double weight,height; public void speakHello(){ System.out.println("yayaya"); } public void averageHeight(){ height=170 阅读全文