产品配置Product 产品配置用于定义和管理RCP应用的多个方面特征。并支持将RCP项目导出为部署包(类似eclipse压缩包),可以直接部署到其他环境上使用。 产品配置必须新建一个 扩展名为 .product的配置文件,一般在根目录下创建。 如果产品配置存在问题,导致项目不能正常导出的话,就很痛 ...
分类:
其他好文 时间:
2019-12-31 18:25:46
阅读次数:
433
1 import matplotlib.pyplot as plt 2 import numpy as np 3 4 5 # 构建数据 6 def build_data(): 7 res = np.load("./国民经济核算季度数据.npz", allow_pickle=True) 8 colum ...
分类:
其他好文 时间:
2019-12-29 20:41:36
阅读次数:
299
#include <stdio.h> #include <stdlib.h> #include <string.h> const int N = 10; // 定义结构体类型struct student,并定义其别名为STU typedef struct student { long int id; ...
分类:
其他好文 时间:
2019-12-29 18:40:06
阅读次数:
53
#include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file1.txt", "r"); // 以只读文本方式打开文件file1.txt if (f ...
分类:
其他好文 时间:
2019-12-29 15:22:43
阅读次数:
86
part1 ex1-2 如果不知道人数 将for(i=0; i<N; i++) 改为 while( !feof(fp) 结果仍然正确 ex1-3 运行程序,观察在屏幕上是否正确输出了按分数高到底排序的信息?同时,在当前路径下,是否生成了二进制 文件?le4.dat?用记事本程序尝试打开文件?le4. ...
分类:
其他好文 时间:
2019-12-28 21:13:22
阅读次数:
71
#include <stdio.h> #include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int score; ...
分类:
其他好文 时间:
2019-12-25 01:33:16
阅读次数:
52
#include <stdio.h>#include <stdlib.h>const int N=5;// 定义结构体类型struct student,并定义STU为其别名 typedef struct student {long no;char name[20];int score; }STU;/ ...
分类:
其他好文 时间:
2019-12-24 13:37:21
阅读次数:
62
#include <stdio.h> #include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int score; ...
分类:
其他好文 时间:
2019-12-23 22:47:28
阅读次数:
82
下面实验以QQ邮箱为例(比较多人用,其它邮箱也一样) Step1、打开CMD 输入:telnet SMTP服务器 SMTP端口地址 连接smtp服务器 Step2、 输入:helo 内容 (向它(指服务器)打招呼) 返回250即OK 输入:auth login(告诉它,你要登录) 334 VXNlc ...
分类:
Web程序 时间:
2019-12-20 18:44:14
阅读次数:
104
c++中引用类型,引用是如何引用的呢? + 引用 引用概念,给变量起个别名,本质是给内存空间取个别名 引用是c++的语法概念、引用的意义(好用) 引用本质:有地址、定义时必须初始化,c++编译器内部按照指针常量 引用结论:间接赋值成立的三个条件的后两步和二为一 引用使用原则:当用引用时,我们不去关心 ...
分类:
编程语言 时间:
2019-12-20 18:27:36
阅读次数:
73