Skip to content

Commit 9fb60ef

Browse files
authored
Merge pull request #2 from 844028312/master
同步到 本地
2 parents 67dd53a + ed148dd commit 9fb60ef

7,502 files changed

Lines changed: 437386 additions & 14566 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 271 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,271 @@
1-
*.class
2-
# Mobile Tools for Java (J2ME)
3-
.mtj.tmp/
4-
5-
# Package Files #
6-
*.jar
7-
*.war
8-
*.ear
9-
10-
*.iml
11-
*.idea
12-
13-
14-
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
15-
hs_err_pid*
16-
17-
#ide config
18-
.metadata
19-
.recommenders
20-
21-
22-
#macOS
23-
.DS_Store
24-
25-
.idea/
26-
*.iml
27-
rebel.*
28-
.rebel.*
29-
30-
target
31-
1+
2+
#################
3+
## Eclipse
4+
#################
5+
6+
*.pydevproject
7+
.project
8+
.metadata
9+
bin/
10+
tmp/
11+
*.tmp
12+
*.bak
13+
*.swp
14+
*~.nib
15+
local.properties
16+
.classpath
17+
.settings/
18+
.loadpath
19+
20+
# External tool builders
21+
.externalToolBuilders/
22+
23+
# Locally stored "Eclipse launch configurations"
24+
*.launch
25+
26+
# CDT-specific
27+
.cproject
28+
29+
# PDT-specific
30+
.buildpath
31+
32+
33+
#################
34+
## Visual Studio
35+
#################
36+
37+
## Ignore Visual Studio temporary files, build results, and
38+
## files generated by popular Visual Studio add-ons.
39+
40+
# User-specific files
41+
*.suo
42+
*.user
43+
*.sln.docstates
44+
45+
# Build results
46+
47+
[Dd]ebug/
48+
[Rr]elease/
49+
x64/
50+
build/
51+
[Bb]in/
52+
[Oo]bj/
53+
54+
# MSTest test Results
55+
[Tt]est[Rr]esult*/
56+
[Bb]uild[Ll]og.*
57+
58+
*_i.c
59+
*_p.c
60+
*.ilk
61+
*.meta
62+
*.obj
63+
*.pch
64+
*.pdb
65+
*.pgc
66+
*.pgd
67+
*.rsp
68+
*.sbr
69+
*.tlb
70+
*.tli
71+
*.tlh
72+
*.tmp
73+
*.tmp_proj
74+
*.log
75+
*.vspscc
76+
*.vssscc
77+
.builds
78+
*.pidb
79+
*.log
80+
*.scc
81+
82+
# Visual C++ cache files
83+
ipch/
84+
*.aps
85+
*.ncb
86+
*.opensdf
87+
*.sdf
88+
*.cachefile
89+
90+
# Visual Studio profiler
91+
*.psess
92+
*.vsp
93+
*.vspx
94+
95+
# Guidance Automation Toolkit
96+
*.gpState
97+
98+
# ReSharper is a .NET coding add-in
99+
_ReSharper*/
100+
*.[Rr]e[Ss]harper
101+
102+
# TeamCity is a build add-in
103+
_TeamCity*
104+
105+
# DotCover is a Code Coverage Tool
106+
*.dotCover
107+
108+
# NCrunch
109+
*.ncrunch*
110+
.*crunch*.local.xml
111+
112+
# Installshield output folder
113+
[Ee]xpress/
114+
115+
# DocProject is a documentation generator add-in
116+
DocProject/buildhelp/
117+
DocProject/Help/*.HxT
118+
DocProject/Help/*.HxC
119+
DocProject/Help/*.hhc
120+
DocProject/Help/*.hhk
121+
DocProject/Help/*.hhp
122+
DocProject/Help/Html2
123+
DocProject/Help/html
124+
125+
# Click-Once directory
126+
publish/
127+
128+
# Publish Web Output
129+
*.Publish.xml
130+
*.pubxml
131+
*.publishproj
132+
133+
# NuGet Packages Directory
134+
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
135+
#packages/
136+
137+
# Windows Azure Build Output
138+
csx
139+
*.build.csdef
140+
141+
# Windows Store app package directory
142+
AppPackages/
143+
144+
# Others
145+
sql/
146+
*.Cache
147+
ClientBin/
148+
[Ss]tyle[Cc]op.*
149+
~$*
150+
*~
151+
*.dbmdl
152+
*.[Pp]ublish.xml
153+
*.pfx
154+
*.publishsettings
155+
156+
# RIA/Silverlight projects
157+
Generated_Code/
158+
159+
# Backup & report files from converting an old project file to a newer
160+
# Visual Studio version. Backup files are not needed, because we have git ;-)
161+
_UpgradeReport_Files/
162+
Backup*/
163+
UpgradeLog*.XML
164+
UpgradeLog*.htm
165+
166+
# SQL Server files
167+
App_Data/*.mdf
168+
App_Data/*.ldf
169+
170+
#############
171+
## Windows detritus
172+
#############
173+
174+
# Windows image file caches
175+
Thumbs.db
176+
ehthumbs.db
177+
178+
# Folder config file
179+
Desktop.ini
180+
181+
# Recycle Bin used on file shares
182+
$RECYCLE.BIN/
183+
184+
# Mac crap
185+
.DS_Store
186+
187+
188+
#############
189+
## Python
190+
#############
191+
192+
*.py[cod]
193+
194+
# Packages
195+
*.egg
196+
*.egg-info
197+
dist/
198+
build/
199+
eggs/
200+
parts/
201+
var/
202+
sdist/
203+
develop-eggs/
204+
.installed.cfg
205+
206+
# Installer logs
207+
pip-log.txt
208+
209+
# Unit test / coverage reports
210+
.coverage
211+
.tox
212+
213+
#Translations
214+
*.mo
215+
216+
#Mr Developer
217+
.mr.developer.cfg
218+
.gitignore
219+
=======
220+
221+
222+
# Mobile Tools for Java (J2ME)
223+
.mtj.tmp/
224+
225+
# Package Files #
226+
*.jar
227+
*.war
228+
*.ear
229+
230+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
231+
hs_err_pid*
232+
233+
#ide config
234+
.metadata
235+
.recommenders
236+
237+
238+
*.xml
239+
*.iml
240+
.idea
241+
*.iml
242+
rebel.xml
243+
rebel-remote.xml
244+
245+
.classpath
246+
.project
247+
.setting
248+
.metadata
249+
250+
target
251+
*.class
252+
253+
log
254+
*.log
255+
tmp
256+
*.tmp
257+
258+
.metadata
259+
RemoteSystemsTempFiles
260+
.gitignore
261+
262+
.recommenders
263+
.idea/
264+
*.iml
265+
rebel.*
266+
.rebel.*
267+
268+
target
269+
*.DS_Store
270+
liuxin/.DS_Store
271+
liuxin/src/.DS_Store

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 2017编程提高社群
2+
3+
2017编程提高社群代码仓库所在地

group01/1298552064/.classpath

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
5+
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
6+
<classpathentry kind="lib" path="src/dom4j-1.6.1.jar"/>
7+
<classpathentry kind="output" path="bin"/>
8+
</classpath>

group01/1298552064/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/bin/
2+
.classpath
3+
.project
4+
/src/*.jar

group01/1298552064/.project

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>1298552064Learning</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.jdt.core.javanature</nature>
16+
</natures>
17+
</projectDescription>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package week01.basic;
2+
3+
public interface Iterator {
4+
public boolean hasNext();
5+
6+
public Object next();
7+
8+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package week01.basic;
2+
3+
public interface List {
4+
public void add(Object o);
5+
6+
public void add(int index, Object o);
7+
8+
public Object get(int index);
9+
10+
public Object remove(int index);
11+
12+
public int size();
13+
}

0 commit comments

Comments
 (0)