// delete.cpp -- using the delete operator
#include
#include // or string.h
using namespace std;
char * getname(void); // function prototype
int main()
{
char *
// delete.cpp -- using the delete operator
#include
#include // or string.h
using namespace std;
char * getname(void); // function prototype
int main()
{
char *
import java.io.File;
public class Delete {
public static void delete(String filename) {
// 创建一个File对象来代表文件名
File f = new File(filename);
//确定该文件或者目录存在,并且没有被写保护。