近期学习鸿蒙硬件物联网开发,用到的开发语言是C; 一、基础语法:第一个案例: 命令 gcc hello.c #include <stdio.h> //stdio.h 是一个头文件 , #include 是一个预处理命令,用来引入头文件 void func2(){ printf("C语言小白变怪兽") ...
分类:
编程语言 时间:
2021-07-05 19:05:43
阅读次数:
0
接口定义 interface 关键字定义的类就叫接口 接口实例 <?php //接口定义 interface Human{ //跑步 public function run(); //跳远 public function jump(); } //接口实现 class Person implement ...
分类:
Web程序 时间:
2021-07-05 18:53:37
阅读次数:
0
不要使用 + 和 fmt.Sprintf 操作字符串 不要使用 + 和 fmt.Sprintf 操作字符串,虽然很方便,但是真的很慢! 我们要使用 bytes.NewBufferString 进行处理。 基准测试如下: + func BenchmarkStringOperation1(b *test ...
分类:
其他好文 时间:
2021-07-05 18:05:25
阅读次数:
0
//produceTypeList-produceType:存在produceTypeList中不存在produceType中 let diff1 = produceTypeList.filter(function(v){ return produceType.indexOf(v) -1 }).jo ...
分类:
编程语言 时间:
2021-06-30 18:45:31
阅读次数:
0
ES5 构造函数 function Person(){ this.name='建林'; this.age=18; this.say=function(){ console.log('person的say') } } let p1=new Person(); console.log(p1.name); ...
分类:
其他好文 时间:
2021-06-30 18:00:57
阅读次数:
0
一 、形参与实参介绍 形参:在定义函数阶段定义的参数称之为形式参数,简称形参,相当于变量名 实参:在调用函数阶段传入的值称之为实际参数,简称实参,相当于变量值 形参与实参的关系: 1、在调用阶段,实参(变量值)会绑定给形参(变量名) 2、这种绑定关系只能在函数体内使用 3、实参与形参的绑定关系在函数 ...
分类:
其他好文 时间:
2021-06-30 17:52:37
阅读次数:
0
Fixture是pytest精髓所在,就像unittest中的setup和teardown一样,但相对之下它的功能更加强大和灵活。 ...
分类:
其他好文 时间:
2021-06-29 15:30:17
阅读次数:
0
Js得到选中的文字 (function getSelectionText() { if (window.getSelection) { return window.getSelection().toString(); } else if (document.selection && document ...
分类:
其他好文 时间:
2021-06-28 21:07:38
阅读次数:
0
一、简介 霍夫变换(Hough Transform)是图像处理中的一种特征提取技术,它通过一种投票算法检测具有特定形状的物体。该过程在一个参数空间中通过计算累计结果的局部最大值得到一个符合该特定形状的集合作为霍夫变换结果。霍夫变换于1962年由Paul Hough 首次提出[53],后于1972年由 ...
分类:
其他好文 时间:
2021-06-28 20:59:18
阅读次数:
0
一、简介 基于matlab PCM编解码 二、源代码 clear all; close all; [x,fs]= audioread('C6_1_y.wav'); v=1; xx=x/v; sxx=floor(xx*4096); y=pcm_encode(sxx); yy=pcm_decode(y, ...
分类:
其他好文 时间:
2021-06-28 20:09:42
阅读次数:
0