电镀是利用电解的原理将导电体铺上一层金属的方法。除了导电体以外,电镀亦可用于经过特殊处理的塑胶上。电镀的过程基本如下:把镀上去的金属接在阳极,或者把待镀金属的可溶性盐添加在槽液中。要被电镀的物件接在阴极。阴阳极以镀上去的金属的正离子组成的电解质溶液相连。通以直流电的电源后,阳极的金属会释放电子,溶液...
分类:
其他好文 时间:
2014-05-01 14:51:02
阅读次数:
314
公式测试$$\begin{bmatrix}0 & \cdots & 0 \\
\vdots & \ddots & \vdots \\ 0 & \cdots & 0 \end{bmatrix}$$
分类:
其他好文 时间:
2014-05-01 14:50:26
阅读次数:
274
不同的类有不同的成员,一般子类的成员是在父类的成员的后面增加了新的成员,如果子类转为父类,那这些新增加的成员虽然还存在,但是就不可以访问得到了。如果父类转为子类,那可能导致不可预知的错误,因为某个成员的指针指向的地址根本就不是具有实际成员。类型的转换也有很多类的,有隐性的和显性的,一些专用的类型转换...
分类:
其他好文 时间:
2014-05-01 14:49:47
阅读次数:
571
作者:zccst思想原理:把字符串分割为数组,粒度为每一个字符。循环该数组,用正则替换原字符串对于字符,并计算替换前后字符串长度差值,即为该字符出现的次数。另外,还可以对重复次数进行排序。用到的知识点:1,正则表达式。基本写法,RegExp,replace的用法。2,数组中的sort。自定义函数排序...
分类:
其他好文 时间:
2014-05-01 14:49:08
阅读次数:
376
Given a strings, partitionssuch that every
substring of the partition is a palindrome.Return the minimum cuts needed for a
palindrome partitioning ofs...
分类:
其他好文 时间:
2014-05-01 14:47:09
阅读次数:
409
About In-App PurchaseIn-App Purchase allows you
to embed a store inside your app using the Store Kit framework. This framework
connects to the App Sto...
分类:
移动开发 时间:
2014-05-01 14:45:53
阅读次数:
519
private void ToConvert_Click(object sender,
EventArgs e) { string strPath = System.Windows.Forms.Application.StartupPath;
...
分类:
其他好文 时间:
2014-05-01 14:44:33
阅读次数:
346
1.RootViewController.m#import
"RootViewController.h"#define URL
@"http://localhost:8080/TestOne/upload3.jsp"@implementation RootViewController-
(void)...
分类:
Web程序 时间:
2014-05-01 14:43:52
阅读次数:
541
题意:给你一个大于4的整数m和一个真分数a/b,求最佳素数对p、q,使得a/b#includeusing namespace std; int main() {
int prime[2000],k; int num[10001]; int i,l; int ...
分类:
其他好文 时间:
2014-05-01 14:43:18
阅读次数:
325
1,官方的入门教程http://ubuntu-manual.org/2,安装JRE
解压缩tar -xzvf jre-version-linux-i586.tar.gz
配置环境变量JAVA_HOME="/usr/lib/java/jre_version"CLASSPATH="$JAVA_HOM.....
分类:
其他好文 时间:
2014-05-01 14:42:40
阅读次数:
385