柱面cylinder扇区sector磁头head /dev/sda1, /dev/sda2: 第一块硬盘的第一、第二分区 分区不是硬盘的物理功能,而是软件功能。 主流分区:有 MBR 和 GPT机制,主要区别如下:1.MBR:Master Boot Record,主引导记录,传统分区机制,应用于绝....
分类:
系统相关 时间:
2014-12-03 23:05:50
阅读次数:
269
主要是JDK的代码,还是比较的经典,值得一看,例如: package alg; /** * @author zha 字符串之间的转化 */
public class Alg3StringToint { /** * @param args */ public static void main(Stri...
分类:
其他好文 时间:
2014-12-03 23:04:50
阅读次数:
292
【转自 http://blog.csdn.net/saphome/article/details/6956933】在类中,只能用TYPE 附加关键字指定数据类型。?TYPES: 一般的类型定义方法?CONSTANTS: 一般的常数定义方法只能用LIKE 引用本地数据对象。?DATA: var1 TY...
分类:
其他好文 时间:
2014-12-03 23:05:23
阅读次数:
231
盗用了被人的教程。 需要看就点击进去吧。复制过来实在是过意不去http://www.wpdaxue.com/phpmyadmin-import-export-database.html
分类:
数据库 时间:
2014-12-03 23:06:08
阅读次数:
211
前面两篇文章:新建maven框架的web项目以及将原有项目改成maven框架之后,我们已经有了maven的项目那么maven项目到底怎么启动呢如果我们直接在myeclipse中按以前的启动方法是不行的。(详情下一篇文章会讲到:在myeclipse中启动maven项目)但是maven项目可以生成本地w...
分类:
系统相关 时间:
2014-12-03 23:04:40
阅读次数:
441
关于文件下载,很多都是用href='文件地址',这样做是很不安全的,所以需要使用到文件流,以下代码用于下载一张图片。 Response.BufferOutput = false; Response.Clear(); Response.ContentType = "...
分类:
Web程序 时间:
2014-12-03 23:05:47
阅读次数:
201
这是LeetCode上的一道题目,需要求二叉树中两点路径的最大和。原题是https://oj.leetcode.com/problems/binary-tree-maximum-path-sum/Given a binary tree, find the maximum path sum.The p...
分类:
其他好文 时间:
2014-12-03 23:05:58
阅读次数:
226
呵呵,又来到了今天的总结。这次主要复习了一下字符串的一些处理。今天就来总结一下。理论:?String 字符串,字符串可以看成字符数组,不可变特性(通过for循环,修改string中的元素,失败!)。属性Length 输出用户名的字符个数方法str.Contains() 判断字符串是否包含String...
题目:Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in...
分类:
其他好文 时间:
2014-12-03 23:06:05
阅读次数:
176
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?使用双指针fast和slow,fast每次走两步,slow每次走一步,如果fast追...
分类:
其他好文 时间:
2014-12-03 23:04:47
阅读次数:
287
Abstract. OpenCASCADE introduce a new class Graphic3d_Camera for the Visualization module. The camera class provides object-oriented approach to setti...
分类:
其他好文 时间:
2014-12-03 23:05:37
阅读次数:
425
1.首先要创建XMLHttpRequest对象,这个对象是前台与后台进行异步的重要对象,现在的浏览器有很多种,创建 XMLHttpRequest 的方法也不相同,所以为了兼容各种浏览器,在创建XMLHttpRequest 时也应该考虑到各种浏览器的情况。目前主流的浏览器在Windows下有IE、Fi...
分类:
Web程序 时间:
2014-12-03 23:05:05
阅读次数:
247
本文主要介绍命令行程序如何获取窗口句柄,即GetConsoleWindow函数使用。
Combination Sum IIGiven a collection of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers s...
分类:
其他好文 时间:
2014-12-03 23:05:22
阅读次数:
328
在给ulipad代码编辑器做一个支持Golang的plugin,这个文件是plugin所需的mClassBrowser.py文件的一部分GolangParse.pyimport redef parseFile(filename): dict = {'import':[], 'struct':{...
分类:
编程语言 时间:
2014-12-03 23:03:33
阅读次数:
418
前面的文章我们已经在本机安装好了maven,同时在myeclipse中配置好了maven的插件。链接如下:Maven安装----在Windows上安装Mavenmyeclipse安装maven插件现在我们就开始在myeclipse中新建一个maven框架的web项目新建项目填写项目名称,一定记得勾选...
分类:
Web程序 时间:
2014-12-03 23:03:11
阅读次数:
352
I,我要实现的效果如图所示:当下拉时,显示下拉刷新。松开后,显示松开刷新,接着正在刷新。II,准备工作1)需要自定义ListView,写一个类继承ListView。并在ListView中添加一些数据。 1 private void initView() { 2 listData = new ...
分类:
移动开发 时间:
2014-12-03 23:02:50
阅读次数:
392