可能是IVF(inter visual fortran)比LF(lahey Fortran)编译器比较严格的原因 real :: A(L,M) = (/ 1,2,3,4,5,6,7,8,9,10,11,12 /) real :: B(M,N) = (/ 1,2,3,4,5,6,7,8 /)这种复制....
分类:
编程语言 时间:
2016-01-13 15:33:37
阅读次数:
217
1,进程间通信 (IPC ) Inter-Process Communication 比较好理解概念的就是进程间通信就是在不同进程之间传播或交换信息。2,linux下IPC机制的分类:管道、信号、共享内存、消息队列、信号量、套接字3,这篇主要说说管道:本质是文件,其他理论什么的网上已经有一大堆了,....
分类:
系统相关 时间:
2016-01-12 22:44:14
阅读次数:
231
function lua_union(union_source,union_target) if type(union_source)~='table' or type(union_target)~='table' then return {}; end; if #(...
分类:
编程语言 时间:
2016-01-09 21:27:10
阅读次数:
237
简单的选择切换视图,自定义选择类目和默认类目。SelectiveView.h#import @protocol SelectiveViewDelegate //此代理方法中可做数据切换等操作- (void)selectiveTag:(NSInteger)selectiveTag;@end@inter...
分类:
其他好文 时间:
2015-12-29 11:05:29
阅读次数:
133
要测试的类import Cocoaclass SimpleInterest: NSObject{ func calculate(loanAmount: Double, var interestRate: Double,years: Int) ->Double { inter...
分类:
编程语言 时间:
2015-12-26 15:07:41
阅读次数:
288
项目中AppDelegate详解1.AppDelegate.h//模板默认引入程序需要使用“类”的框架,即UIKit.h头文件,使它包含在程序中#import//此处@class声明程序中的“类”名称为MyViewController@classMyViewController;//此处@inter...
分类:
移动开发 时间:
2015-12-23 19:49:44
阅读次数:
214
1. DELETE FROM sys_fun WHERE pids LIKE CONCAT('%',',',${value},',','%')2.从一张表中找到多条记录插入到另一张表中3.从另一张表中找到需要的字段赋值给当前表对应字段4.5. INSERT INTO inter_fu...
分类:
其他好文 时间:
2015-12-17 12:23:16
阅读次数:
139
cv::resize( InputArray src, OutputArray dst, Size dsize, double fx=0, double fy=0, int interpolation=INTER_LINEAR );Src- Source image.Dst-Destina...
分类:
其他好文 时间:
2015-12-14 14:32:01
阅读次数:
331
我们先说一下定时器吧://定时器:设置一个定时器,再设置一个等待的时间,到达指定时间后,执行对应的操作//两种定时器:用法一样,区别一个执行后不会停下来,一个只执行一次//window.setInterval([function],[interval]);/*设置一个定时器,到达指定时间[inter...
分类:
Web程序 时间:
2015-12-12 23:08:10
阅读次数:
224
1 #import "ViewController.h" 2 3 #define Width self.view.frame.size.width 4 #define Height self.view.frame.size.height 5 #define viewH 200 6 @inter...
分类:
移动开发 时间:
2015-12-11 18:12:48
阅读次数:
237