- 浏览: 88444 次
- 性别:
- 来自: 北京
最新评论
-
cici_new_1987:
zranye 写道美女,我没搞定诶。指点一下么?老是报Exce ...
java命令行编译 运行JAVA类 -
zranye:
美女,我没搞定诶。指点一下么?老是报Exception in ...
java命令行编译 运行JAVA类 -
dandan_com:
不错,但是图片不显示啊
MySQL安装小结 -
shhbobby:
写得很好,以后希望还能看到其他源码的分析
[转]Java源码分析:深入探讨Iterator模式
文章列表
package com.abc.dollapp.doll;
public class Doll {
private String name;
public Doll(String name){
this.name = name;
}
public void speak(){
System.out.println(name);
}
}
package com.abc.dollapp.main;
import com.abc.dollapp.doll.Doll;
public class AppMain {
publ ...
准备工作:
先使用dos命令cd /d来改变dos的当前路径,这里我们将当前路径设置为D:\dev\Test\src\com\cn\test 这样处理是为了方便找到后面我们编译的文件
编译java源文件:假设文件名为:HelloWorld.java文件内容:
package com.cn.test;
public class HelloWorld{
public static void
Java API中java.io.Serializable接口源码: [size=16px;]1[/size] public interface Serializable { 2 } 类通过实现java.io.Serializable接口可以启用其序列化功能。未实现次接口的类无法使其任何状态序列化或反序列化。可序列化类的所有子类型 ...
java
1 纯面向对象
2 简单性 语法 语言特性 开发
3 开放性
4 跨平台
5 开发成本低
高级语言 --> 编译器 --> 低级语言: 运行时
高级语言--> 解释器 --> 低级语言: 运行时需要源代码解释器:跨平台
编译一个简单的java程序
- 博客分类:
- java基础
1 题目
url:http://jobs.p1.com/tech/附件
2 程序
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.lang.Thread.UncaughtExceptionHandler;
import java.util.Scanner;
public class CoastLength {
public static void main(String[] args) throw ...
public class Test {
public static void main(String[] args) {
int i=11;
System.out.println(i%12);
System.out.println(i-(i>>12));
}
}
输出
11
11
取模与右移关系
targetValue%12=targetValue-(targetValue>>12)
prebackground:
修改/etc/passwd 文件,将这行修改了
root:x:0:0:root :/root:/bin/bash
==>
root:x:0:0:root:/root:/home/root
resolution:
=================================================
单用户模式进入系统:
系统启动时在启动菜单上选择
Kernel/.. root=/
按e键,在后面加上single
按b键,启动,进入到系统中,编辑/etc/passwd
reboot
可以进入系统
在命令行输入 #mount | grep ''on /'' 得到你root用户所在分区/dev/your_partition,然后输入 fsck -y /dev/your_partition 即,检测并修复磁盘/dev/your_partition,-y 选项指定检测每个文件是自动输入yes 系统提示重启,重启后还是不行 在命令行输入 fsck -y /dev/sda1 重启ok。
WILDCARDS1Wildcard Meaning* Matches any characters? Matches any single character[characters] Matches any character that is a member of the set characters[!characters] Matches any character that is not a member of the set characters[[:class:]] Matches any character t ...
Linux软连接硬链接
- 博客分类:
- linux命令
软硬连接命令比较
1 create a hard link,
ln file link
2 create a symbolic link where “item” is either a file or a directory
ln -s item link
硬链接例子
创建硬连接之前
/var/root/document # ls -liF ...
Linux 的启动流程
- 博客分类:
- Linux基础
the start order1 boot kernelOS reading kernel file under /boot directory 2 start init programe /sbin/init it's the first program the kernel starts when booting. init , which can be found in /sbin/init, is responsible for getting the system up and running after the kernel has finished booting.the pi ...
整个磁盘使用情况查询
1 df -l
<---单位KB
2 df -lh
<--1024进制 用G或M或KB显示结果
3 df --si
<--1000进制 用G或M或KB显示结果
某个目录使用情况查询
du -lh /home
du --si /home
du -s --si /home 显示/home目录总计
du --si /home/ --max-depth=1
20M /home/cici
41k /home/oracle
90M /home/root
110M /home/
du -lh /home/ --m ...
Linux添加系统服务小程序
- 博客分类:
- Linux WEB开发
如何增加一个服务:
1.服务脚本必须存放在/etc/ini.d/目录下;
2.chkconfig --add servicename
在chkconfig工具服务列表中增加此服务,此时服务会被在/etc/rc.d/rcN.d中赋予K/S入口了;
3.chkconfig --level 35 mysqld on
修改服务的默认启动等级。
4 启动停止
service servicename start
service servicename stop
Linux 开机启动项目
http://www.ruanyifeng.com/blog/2013/08/l ...
Linux下将APACHE加入系统服务
- 博客分类:
- Linux基础
将/usr/sbin/spachectl 命令拷贝到 /etc/rc.d/init.d目录之下
改名为httpd
#vi httpd
在第一行下添加如下两行文字
#chkconfig 30 70 30
#description APACHE
注册该服务
#chmod 777 httpd
#chkconfig --add httpd
启动/停止/状态
#service httpd sart/stop/status