https://blog.csdn.net/chenggong2dm/article/details/61923420 https://www.cnblogs.com/caochuangui/p/5980469.html https://blog.csdn.net/wwangfabei1989/ar ...
分类:
编程语言 时间:
2018-06-07 10:21:46
阅读次数:
199
As you know, all the computers used for ACM contests must be identical, so the participants compete on equal terms. That is why all these computers ar ...
分类:
其他好文 时间:
2018-06-07 01:00:53
阅读次数:
251
c++文件的读写 1.文本方式的写文件 3.二进制方式的写文件 c++ include include using namespace std; int main(){ int ar[] = {11,232,123123,1223,455,4,4,5,56,4,33}; ofstream ofile ...
分类:
编程语言 时间:
2018-06-05 23:16:54
阅读次数:
235
原文:2018年Unity结合Android SDK下载安装及配置教程 首先声明: Unity版本2017.1f3 最近试着在Unity中利用网易做AR开发时,发布项目文件需要发布到Android平台,遇到一些问题,看了网上的一些资料,踩了一些坑,现在总结出来,希望有相同的开发者遇到时可... ...
分类:
移动开发 时间:
2018-06-04 19:21:19
阅读次数:
3687
以前没有遇到过数组这种类型,最近遇到了需要数组才能解决问题,找了一下关于数组的用法,现整理下来。 Oracle中的数组分为固定数组和可变数组。 一、固定数组 固定数组:在定义的时候预定义了数组的大小,在初始化数组时如果超出这个大小,会提示ORA-06532:超出小标超出限制! 语法: TYPE ar ...
分类:
数据库 时间:
2018-06-04 16:32:10
阅读次数:
250
有期间的模块:GL、AP、AR、FA、INV、PO、PA 对应标准路径 GL: 总账-设置-打开/关闭 AP: 应付-会计科目-控制应付款期间 AR: 应收-控制-会计科目-打开/关闭期间 FA: 资产-折旧-运行折旧 INV: 会计关闭周期-库存会计期 PO: 采购管理->设置->财务系统->会计 ...
分类:
其他好文 时间:
2018-06-04 14:16:09
阅读次数:
217
问题描述: A city's skyline is the outer contour of the silhouette formed by all the buildings in that city when viewed from a distance. Now suppose you ar ...
分类:
其他好文 时间:
2018-06-03 10:53:19
阅读次数:
180
Given an array nums and a value val, remove all instances of that value in-place and return the new length. Do not allocate extra space for another ar ...
分类:
其他好文 时间:
2018-06-02 14:56:33
阅读次数:
185
变量作用域 变量的位置或影响它的作用范围,这个作用范围也叫作用域。 如果变量是在函数内声明的,那么的作用域仅在函数内,函数之外不能调用。函数调用执行完后,函数内的变量立即销毁。 function getArea(length,width){ // 局部变量area,在函数调用后立马销毁 var ar ...
分类:
编程语言 时间:
2018-06-02 13:00:42
阅读次数:
178
链接器的意义链接器的主要作用是把各模块之间相互引用的部分处理好,使得各模块之间能够正确的衔接模块链接静态链接-由链接器在链接时将库的内容直接加入到可执行程序中Linux下静态库的创建和使用-编译静态库源码:gcc-clib.c-olib.o-生成静态库文件:ar-qlib.alib.o//将lib.o与其他文件打包到lib.a中-使用静态库编译:gccmain.clib.a-omain.out动态
分类:
其他好文 时间:
2018-05-31 02:43:40
阅读次数:
165