From 46db1b74d2d5312a4333fd50a71b55a94666bb35 Mon Sep 17 00:00:00 2001 From: jingjiaying Date: Tue, 28 Apr 2026 22:10:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4pair=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E5=A4=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BankAccount/.gitignore | 30 ++++++++++++ BankAccount/.idea/.gitignore | 10 ++++ BankAccount/.idea/misc.xml | 6 +++ BankAccount/.idea/modules.xml | 8 +++ BankAccount/.idea/vcs.xml | 6 +++ BankAccount/BankAccount.iml | 11 +++++ lianxi/.gitignore | 30 ++++++++++++ lianxi/.idea/.gitignore | 10 ++++ lianxi/.idea/misc.xml | 6 +++ lianxi/.idea/modules.xml | 8 +++ lianxi/.idea/vcs.xml | 6 +++ lianxi/lianxi.iml | 11 +++++ lianxi/src/com/test/Test.java | 9 ++++ pair/src/Pair.java | 4 -- w/.idea/workspace.xml | 92 +++++++++++++++++++++++++++++++++++ w6/.idea/vcs.xml | 1 + 16 files changed, 244 insertions(+), 4 deletions(-) create mode 100644 BankAccount/.gitignore create mode 100644 BankAccount/.idea/.gitignore create mode 100644 BankAccount/.idea/misc.xml create mode 100644 BankAccount/.idea/modules.xml create mode 100644 BankAccount/.idea/vcs.xml create mode 100644 BankAccount/BankAccount.iml create mode 100644 lianxi/.gitignore create mode 100644 lianxi/.idea/.gitignore create mode 100644 lianxi/.idea/misc.xml create mode 100644 lianxi/.idea/modules.xml create mode 100644 lianxi/.idea/vcs.xml create mode 100644 lianxi/lianxi.iml create mode 100644 lianxi/src/com/test/Test.java delete mode 100644 pair/src/Pair.java create mode 100644 w/.idea/workspace.xml diff --git a/BankAccount/.gitignore b/BankAccount/.gitignore new file mode 100644 index 0000000..13275f1 --- /dev/null +++ b/BankAccount/.gitignore @@ -0,0 +1,30 @@ +### IntelliJ IDEA ### +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ +.kotlin + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/BankAccount/.idea/.gitignore b/BankAccount/.idea/.gitignore new file mode 100644 index 0000000..b6b1ecf --- /dev/null +++ b/BankAccount/.idea/.gitignore @@ -0,0 +1,10 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 已忽略包含查询文件的默认文件夹 +/queries/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ diff --git a/BankAccount/.idea/misc.xml b/BankAccount/.idea/misc.xml new file mode 100644 index 0000000..6f29fee --- /dev/null +++ b/BankAccount/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/BankAccount/.idea/modules.xml b/BankAccount/.idea/modules.xml new file mode 100644 index 0000000..b1643fd --- /dev/null +++ b/BankAccount/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/BankAccount/.idea/vcs.xml b/BankAccount/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/BankAccount/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/BankAccount/BankAccount.iml b/BankAccount/BankAccount.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/BankAccount/BankAccount.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/lianxi/.gitignore b/lianxi/.gitignore new file mode 100644 index 0000000..13275f1 --- /dev/null +++ b/lianxi/.gitignore @@ -0,0 +1,30 @@ +### IntelliJ IDEA ### +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ +.kotlin + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/lianxi/.idea/.gitignore b/lianxi/.idea/.gitignore new file mode 100644 index 0000000..b6b1ecf --- /dev/null +++ b/lianxi/.idea/.gitignore @@ -0,0 +1,10 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 已忽略包含查询文件的默认文件夹 +/queries/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ diff --git a/lianxi/.idea/misc.xml b/lianxi/.idea/misc.xml new file mode 100644 index 0000000..6f29fee --- /dev/null +++ b/lianxi/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/lianxi/.idea/modules.xml b/lianxi/.idea/modules.xml new file mode 100644 index 0000000..ee75ca6 --- /dev/null +++ b/lianxi/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/lianxi/.idea/vcs.xml b/lianxi/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/lianxi/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/lianxi/lianxi.iml b/lianxi/lianxi.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/lianxi/lianxi.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/lianxi/src/com/test/Test.java b/lianxi/src/com/test/Test.java new file mode 100644 index 0000000..332157b --- /dev/null +++ b/lianxi/src/com/test/Test.java @@ -0,0 +1,9 @@ +package com.test; + +import java.util.Scanner; + +public class Test { + public static void main(String[] args) { + Scanner sc=new Scanner() + } +} diff --git a/pair/src/Pair.java b/pair/src/Pair.java deleted file mode 100644 index 5745c1f..0000000 --- a/pair/src/Pair.java +++ /dev/null @@ -1,4 +0,0 @@ -package PACKAGE_NAME; - -public class Pair { -} diff --git a/w/.idea/workspace.xml b/w/.idea/workspace.xml new file mode 100644 index 0000000..a295db9 --- /dev/null +++ b/w/.idea/workspace.xml @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + { + "associatedIndex": 7 +} + + + + { + "keyToString": { + "ModuleVcsDetector.initialDetectionPerformed": "true", + "RunOnceActivity.ShowReadmeOnStart": "true", + "RunOnceActivity.git.unshallow": "true", + "RunOnceActivity.typescript.service.memoryLimit.init": "true", + "git-widget-placeholder": "main", + "kotlin-language-version-configured": "true", + "vue.rearranger.settings.migration": "true", + "应用程序.Main.executor": "Run" + } +} + + + + + + + + + + + + + + + + + + + + + + + + + + + 1774925328545 + + + + + + \ No newline at end of file diff --git a/w6/.idea/vcs.xml b/w6/.idea/vcs.xml index 6c0b863..288b36b 100644 --- a/w6/.idea/vcs.xml +++ b/w6/.idea/vcs.xml @@ -2,5 +2,6 @@ + \ No newline at end of file