Fortran6.5 使用流程
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
简单说明一次编译程序的过程:
1.建立一个新的Project(File-new-选择Project选项卡-Utility Project,给定project的名称),
确定生成Project。
2.生成一个新的程序文件(File-new-选择Files选项卡-Fortran Free Format Source File,给
定文件名),或是插入一个已有的程序文件(选项Project/Add to Project/Files).
3.用Build菜单中的Excute选项来编译并运行程序,或是只单击Build选项来只做编译,
不运行程序。
4.要写新的程序可以另外建立一个新的Project,或是直接跟换Project中的文件。千万不要
把两个独立的程序文件放入同一个Project中,否则导致编译过程出现错误。
5.下次修改程序时,可以直接使用File/Open Workspace来打开*.dsw的Project工程文件。
一、安装
Fortran6.5安装包中包括以下文件(夹)
本人电脑-x86 64位-win7
进入X86文件夹,运行,中间需要输入序列号,记事本打开
获取,进过中间一些文件位置的选择,到百分之九十多的时候,需要选择是否安装运行环境,选是,最后安装完成。
二、运行
开始---Compaq Visual Fortran 6---Developer Studio
如果提示打开失败,则选中Developer Studio,右键----管理员获得所有权---就可以了
三、打开
出现如下对话框:
熟悉一些tips:
第一条:
If your program hangs应用程序瘫痪while running outside the debugger在调试器外运行程序, attach贴上、附加the debugger调试器to your program程序by choosing Start Debug调试、除错form the Build menu, and then choosing Attach to Process.
如果你的程序在调试器外运行,导致应用程序瘫痪,通过选择Build---Start Dubug---attach to program,讲调试器连接到你的程序。
第二条:
Visual可视化Fortran【公式翻译程式语言(formula translator)】uses the file extension文件扩展名. F90 to indicate表示Free Form source code自由形式的源代码, and the extensions .FOR or .F to indicate Fixed Form source code.
Visual Fortran采用拓展名为.F90的文件来表示自由形式的源代码,扩展名为.FOR或.F 的文件来表示固定形式的源代码。
第三条:
You can have multiple projects in a workspace工作区. Use the Insert Project into Workspace command or select the Add to current workspace check box when you create a new project.
你可以在可以工作区拥有多个项目。使用Insert Project插入当前命令工作区,或者选择create a new project增加一个当前工作区的复选框。
第四条:
When debugging调试以排除故障, you can press Alt+6 to display the Memory window.
调试的时候,你可以按Alt+6去显示记忆窗口。
第五条:
Visual Fortran samples are installed in folders in …\df98\samples. You can also copy folders in …\df\samples form the CD-ROM. Samples are described in the file samples.htm.
Visual Fortran的例子被安装在文件夹…\df98\samples中。你也可以在CD-ROM 的…\df\samples文件夹中复制。例子在文件samples.htm中有描述。
Tutorial Samples教程的例子contains one source源程序with build instructions构建指令as sourse comments注释. Other samples include source files源文件and a makefile生成文件or a project workspace项目工作区.
教程例子包含一个以构建指令作为注释的源程序。其他例子包含源文件和生成文件或者一个项目工作区。
第六条:
Ctrl+Tab cycles through the queue of open Developer Studio windows. (It works like Alt+Tab in Windows. )
第七条:
You can repeat the last Find command in the source editor by pressing F3.
第八条:
Microsoft Visual C++ Development Environment organizes projects into Project Workspaces, stored on your hard disk as a .DSK file.
To create a makefile (.MAK) for your project, in the Project menu, select Export Makefile.
The .MAK file is a standard makefile that can be used with NMAKE to create your application form the command line. is a standard makefile that can be used with NMAKE to create your application form the command line.
第九条:
If you want to see sample code at the same time you are working on your project, create a new project that contains the sample code as part of your workspace.
第十条:
The source editor can emulate BRIEF(TM) and Epsilon (TM). From the Tools menu, choose Options, then click Compatibility.
第十一条:
You can specity many types of compilation options from “Setting …” on the Project menu, including the level of debugging information and optimization needed, types of compiler messages, requesting run-time checks, and other options. For information on compiler options, see the Compiler Options in the Programmer’s Guide.
第十二条:
To get some new powerful and useful source editor commands, click Macros on the Tools menu and load the sample macro file.
第十三条: