代码搜索:RF

找到约 8,431 项符合「RF」的源代码

代码结果 8,431
www.eeworm.com/read/330726/12873555

m rainflow.m

% RAINFLOW cycle counting. % RAINFLOW counting function allows you to extract % cycle from random loading. % % SYNTAX % rf = RAINFLOW(ext) % rf = RAINFLOW(ext, dt) % rf = RAINFLOW(ex
www.eeworm.com/read/330445/12890454

pas unit1.pas

unit Unit1; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ComCtrls, ExtCtrls; type TfrmMain = class(TForm) btnView: TButton;
www.eeworm.com/read/244073/12892537

pas unit1.pas

unit Unit1; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ComCtrls, ExtCtrls; type TfrmMain = class(TForm) btnView: TButton;
www.eeworm.com/read/142277/12953521

frm xboutin.frm

VERSION 5.00 Begin VB.Form xboutin BorderStyle = 4 'Fixed ToolWindow ClientHeight = 2775 ClientLeft = 45 ClientTop = 270 ClientWidth = 7290 L
www.eeworm.com/read/141847/12981107

txt 读取随机文件.txt

import java.io.*; /** * Title: 读取随机文件 * Description: 演示使用RandomAccessFile类读取文件。 * Copyright: Copyright (c) 2003 * Filename: RandFile.java * @version 1.0 */ pu
www.eeworm.com/read/140706/13065388

makefile

all: mac.a mac.j rf @wd=`pwd`; \ i=`grep '^MACDIR=' makes | sed -e 's/.*=[ ]*//' -e 's/[ ]*$$//'`; \ if [ "X$$i" = "X" -o "X`eval echo $$i`" != "X$$wd" ]; \ then echo Change MACDIR in makes to
www.eeworm.com/read/327201/13095048

java writelog.java

package myseverlet; import java.io.BufferedWriter; import java.io.FileWriter; public class Writelog { // public static void main(String[] args) { // System.out.println("Writelog is in"); //
www.eeworm.com/read/325930/13174681

makefile

all: mac.a mac.j rf @wd=`pwd`; \ i=`grep '^MACDIR=' makes | sed -e 's/.*=[ ]*//' -e 's/[ ]*$$//'`; \ if [ "X$$i" = "X" -o "X`eval echo $$i`" != "X$$wd" ]; \ then echo Change MACDIR in makes to
www.eeworm.com/read/325023/13230207

java usingrandomaccessfile.java

//: io/UsingRandomAccessFile.java import java.io.*; public class UsingRandomAccessFile { static String file = "rtest.dat"; static void display() throws IOException { RandomAccessFile rf
www.eeworm.com/read/138595/13230224

txt 利用ramdonaccessfile来实现文件的追加!.txt

作者:jeru 日期:2000-11-29 14:44:48 RamdonAccessFile 是个很好用的类,功能十分强大,可以利用它的 length()和seek()方法来轻松实现文件的追加,相信我下面这个例子是 很容易看懂的,先写入十行,用length()读出长度(以byte为单位), 在用seek()移动到文件末尾,继续添加,最后显示记录。 import java.io.*