public void CreateLine(Grid oGrid, string sTitle,
string sTableName, bool ifGetSig, string sYUint, string sYUint2, string
sYTitle1, string sYTitle2, ....
分类:
Web程序 时间:
2014-04-30 04:49:24
阅读次数:
518
public void CreateChart(Grid oGrid,
ObservableCollection lBaseOilBar) { foreach (ListItem li in lBaseOilBar) {
//图表大小,框线 Chart chart = new MyCharts()....
分类:
Web程序 时间:
2014-04-30 04:31:52
阅读次数:
1251
1 /*2 Animal.java3 */4 package animal;5 6 public
abstract class Animal {7 public abstract void cry();8 public abstract String
getanimalName(...
分类:
编程语言 时间:
2014-04-30 04:27:50
阅读次数:
403
void avdevice_register_all(void){ static int
initialized; if (initialized) return; initialized = 1; /* devices */
REGISTER_INOUTDEV(ALSA, alsa); REGIS...
分类:
其他好文 时间:
2014-04-30 04:26:51
阅读次数:
351
今天朋友问我String的内容是真的不可变吗?我肯定告诉他是的?因为在我的主观意识里String就是一个不可变的对象。于是他给我发了这段程序:
public class StringTest { public static void main(String[] args) ...
分类:
编程语言 时间:
2014-04-28 18:21:08
阅读次数:
722
查找输入序列中的最大最小数值,要求时间复杂度为1.5nC#实现如下:public class
MinMaxFinder where T : IComparable { public void FindMinMax(T[] array, int
startIndex, int en...
分类:
其他好文 时间:
2014-04-28 17:43:30
阅读次数:
441
12345678910111213#include void main(){char
*sa="sdhshdh";char *sb="cdehhhhsdssssd";printf("%d , %d
\n",strlen(sa),strlen(sb));if(strlen(sa)-strlen(sb)...
分类:
其他好文 时间:
2014-04-28 15:27:16
阅读次数:
473
有时候无法从控件中拖拽一个按钮到storyboard,必须用编写代码方式添加按钮: 1 -
(void)viewDidLoad 2 { 3 [super viewDidLoad]; 4 // Do any additional setup after
loading the view...
分类:
其他好文 时间:
2014-04-28 15:01:42
阅读次数:
532
代码: 1 /* 2 test.java 3 */ 4 package test; 5
public class test { 6 public static void main(String args[] ) 7 { 8 CPU ccp= new
CPU();...
分类:
编程语言 时间:
2014-04-28 14:04:45
阅读次数:
439
1 //Accepted 0MS 232K 2 #include 3 #include 4
int ans; 5 int t; 6 int n; 7 void slove() 8 { 9 int x;10 ans=0;11 t=0;12 for
(int i=0...
分类:
其他好文 时间:
2014-04-27 23:08:07
阅读次数:
625