代码搜索:CLOSE
找到约 10,000 项符合「CLOSE」的源代码
代码结果 10,000
www.eeworm.com/read/362924/7139049
m chap5_3mf.m
clear all;
close all;
L1=-pi/6;
L2=pi/6;
L=L2-L1;
T=L*1/1000;
x=L1:T:L2;
figure(1);
for i=1:1:5
gs=-[(x+pi/6-(i-1)*pi/12)/(pi/24)].^2;
u=exp(gs);
hold on;
plot(x,u);
end
xla
www.eeworm.com/read/104147/7141194
java copy.java
import java.io.*;
public class Copy {
public static void main(String[] args) throws IOException {
File inputFile = new File("farrago.txt");
File outputFile = new File("outagain.txt");
www.eeworm.com/read/104147/7141196
java sequenceioapp.java
import java.io.*;
public class SequenceIOApp {
public static void main(String[] args) throws IOException {
SequenceInputStream inStream;
FileInputStream f1 = new FileInputS
www.eeworm.com/read/104147/7141199
java iodemo.java
import java.io.*;
public class IODemo {
public static void main(String[] args) {
try {
// 1. Reading input by lines:
BufferedReader in =
new BufferedReader(
www.eeworm.com/read/332978/7141555
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/289573/7142867
txt 5-20.txt
【例5.20】分别在不同的工作区打开表“xsqk.dbf”和“xscj.dbf”。
CLOSE ALL &&关闭所有打开的表,当前工作区为1号工作区
SELECT 1 &&选定1号工作区为当前工作区
USE xsqk
SELECT 0 &&2号工作区未打开过表,选定2号工作区为当前工作区
USE xscj
SET &
www.eeworm.com/read/308978/7144238
java client.java
public class Client {
public static void main(String args[]) {
String data=null;
String kdata=null;
try {
Socket skt = new Socket("127.0.0.1", 8888);
PrintWriter out=new PrintWriter
www.eeworm.com/read/308978/7144239
java server.java
import java.io.*;
import java.net.Socket;
import java.net.ServerSocket;
public class Server {
public static void main(String args[]) {
String data=null;
try {
ServerSocket srvr