码迷,mamicode.com
首页 >  
搜索关键字:class    ( 183544个结果
github创建个人博客手记
第一步:先总体看下要在本地创建的文件目录/jun_demo |-- _config.yml |-- _layouts | |-- default.html |-- _posts | |-- 2014-06-26-hello-world.html |-- ...
分类:其他好文   时间:2014-06-27 15:06:40    阅读次数:222
debian内核代码执行流程(二)
继续上一篇文章《debian内核代码执行流程(一)》未完成部分。acpi_bus_init调用acpi_initialize_objects,经过一系列复杂调用后输出下面信息:[ 0.147393] ACPI: SSDT 7f5e7cc0 0030F (v01 PmRef Cpu0Ist ...
分类:其他好文   时间:2014-06-27 15:05:17    阅读次数:246
Lua中调用C函数(lua-5.2.3)
Lua能够调用C函数的能力将极大的提高Lua的可扩展性和可用性。 对于有些和操作系统相关的功能,或者是对效率要求较高的模块,我们全然能够通过C函数来实现,之后再通过Lua调用指定的C函数。 对于那些可被Lua调用的C函数而言,其接口必须遵循Lua要求的形式,即typedef int (*l...
分类:其他好文   时间:2014-06-27 15:04:37    阅读次数:202
邮件报警shell脚本
温馨提示 首先要安装postfix 或者 sendmail 等邮件服务器1.Apache#!/bin/bash#apache.shnc -w2 localhost 80 if[ $? -ne 0 ]then echo "apache is down,please check" | mail us.....
分类:其他好文   时间:2014-06-27 15:03:59    阅读次数:256
前缀积和后缀积
Description:给出数列A1,A2,...,AN,并设Bi = (A1 * A2 * A3 ... AN) / Ai mod (109 + 7)现要求把所有的Bi 算出来Input:输入包含多组测试数据。对于每组数据,第1 行,1 个整数N(1 ≤N ≤100,000), 表示数列的长度。第...
分类:其他好文   时间:2014-06-27 15:01:24    阅读次数:193
加强版俄罗斯
加强版的俄罗斯,可以带回去给我妹妹玩了。//游戏类 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System....
分类:其他好文   时间:2014-06-27 15:00:43    阅读次数:324
hbase启动时遇到class not found 错误
问题描述:1 当hbase自己运行时,没有问题,可以正常启动2 当搭建完hadoop环境后,再启动报异常:Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/hadoop/hbase/util/HBaseConf...
分类:其他好文   时间:2014-06-27 14:59:21    阅读次数:268
类的使用
//类public class Car {private int speed;//速度//设置器public void setSpeed(int speed){if(speed<0){System.out.println("速度设置有误,系统自动设置为20");this.speed = 20;}el...
分类:其他好文   时间:2014-06-27 14:57:32    阅读次数:195
scjp考试准备 - 6
题一,如下代码的执行结果: class Person{ String name = "No name"; public Person(String nm){name = nm;} } class Employee extends Person{ String empID = "0000"; publ...
分类:其他好文   时间:2014-06-27 14:56:54    阅读次数:199
jQuery 插件模板
总结常用的jQuery插件模板
分类:Web程序   时间:2014-06-27 14:54:12    阅读次数:221
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!