Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Prog1_WS2017_18_Wienkop
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Uwe Wienkop
Prog1_WS2017_18_Wienkop
Commits
16e46dd0
Commit
16e46dd0
authored
Dec 12, 2017
by
Uwe Wienkop
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Call by reference
parent
82839273
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
176 additions
and
0 deletions
+176
-0
Prog1_WS2017-18/10CallByReference/10CallByReference.csproj
Prog1_WS2017-18/10CallByReference/10CallByReference.csproj
+60
-0
Prog1_WS2017-18/10CallByReference/App.config
Prog1_WS2017-18/10CallByReference/App.config
+6
-0
Prog1_WS2017-18/10CallByReference/Program.cs
Prog1_WS2017-18/10CallByReference/Program.cs
+68
-0
Prog1_WS2017-18/10CallByReference/Properties/AssemblyInfo.cs
Prog1_WS2017-18/10CallByReference/Properties/AssemblyInfo.cs
+36
-0
Prog1_WS2017-18/Prog1_WS2017-18.sln
Prog1_WS2017-18/Prog1_WS2017-18.sln
+6
-0
No files found.
Prog1_WS2017-18/10CallByReference/10CallByReference.csproj
0 → 100644
View file @
16e46dd0
<?xml version="1.0" encoding="utf-8"?>
<Project
ToolsVersion=
"14.0"
DefaultTargets=
"Build"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<Import
Project=
"$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props"
Condition=
"Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')"
/>
<PropertyGroup>
<Configuration
Condition=
" '$(Configuration)' == '' "
>
Debug
</Configuration>
<Platform
Condition=
" '$(Platform)' == '' "
>
AnyCPU
</Platform>
<ProjectGuid>
{1A720D7E-A300-4351-9052-B774416A1BE8}
</ProjectGuid>
<OutputType>
Exe
</OutputType>
<AppDesignerFolder>
Properties
</AppDesignerFolder>
<RootNamespace>
_10CallByReference
</RootNamespace>
<AssemblyName>
10CallByReference
</AssemblyName>
<TargetFrameworkVersion>
v4.5.2
</TargetFrameworkVersion>
<FileAlignment>
512
</FileAlignment>
<AutoGenerateBindingRedirects>
true
</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup
Condition=
" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "
>
<PlatformTarget>
AnyCPU
</PlatformTarget>
<DebugSymbols>
true
</DebugSymbols>
<DebugType>
full
</DebugType>
<Optimize>
false
</Optimize>
<OutputPath>
bin\Debug\
</OutputPath>
<DefineConstants>
DEBUG;TRACE
</DefineConstants>
<ErrorReport>
prompt
</ErrorReport>
<WarningLevel>
4
</WarningLevel>
</PropertyGroup>
<PropertyGroup
Condition=
" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "
>
<PlatformTarget>
AnyCPU
</PlatformTarget>
<DebugType>
pdbonly
</DebugType>
<Optimize>
true
</Optimize>
<OutputPath>
bin\Release\
</OutputPath>
<DefineConstants>
TRACE
</DefineConstants>
<ErrorReport>
prompt
</ErrorReport>
<WarningLevel>
4
</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference
Include=
"System"
/>
<Reference
Include=
"System.Core"
/>
<Reference
Include=
"System.Xml.Linq"
/>
<Reference
Include=
"System.Data.DataSetExtensions"
/>
<Reference
Include=
"Microsoft.CSharp"
/>
<Reference
Include=
"System.Data"
/>
<Reference
Include=
"System.Net.Http"
/>
<Reference
Include=
"System.Xml"
/>
</ItemGroup>
<ItemGroup>
<Compile
Include=
"Program.cs"
/>
<Compile
Include=
"Properties\AssemblyInfo.cs"
/>
</ItemGroup>
<ItemGroup>
<None
Include=
"App.config"
/>
</ItemGroup>
<Import
Project=
"$(MSBuildToolsPath)\Microsoft.CSharp.targets"
/>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
\ No newline at end of file
Prog1_WS2017-18/10CallByReference/App.config
0 → 100644
View file @
16e46dd0
<?
xml
version
=
"1.0"
encoding
=
"utf-8"
?>
<
configuration
>
<
startup
>
<
supportedRuntime
version
=
"v4.0"
sku
=
".NETFramework,Version=v4.5.2"
/>
</
startup
>
</
configuration
>
\ No newline at end of file
Prog1_WS2017-18/10CallByReference/Program.cs
0 → 100644
View file @
16e46dd0
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text
;
using
System.Threading.Tasks
;
namespace
_10CallByReference
{
class
Program
{
static
void
IncrByValue
(
int
x
)
{
// Call by Value: Wert wird kopiert
x
=
x
+
1
;
Console
.
WriteLine
(
$"x in Incr
{
x
}
"
);
}
static
void
IncrByRef
(
ref
int
x
,
out
int
y
)
{
// Ref: Es ist sichergestellt, dass die Ref-Var. einen initialisierten Wert besitzt
// Out: Es ist nicht sichergestellt, dass die out-Var einen init. Wert besitzt
// ABER: Es wird in der Funktion sichergestellt, dass der out-Var ein
// Wert zugewiesen wird, analog zum return
x
=
x
+
1
;
y
=
x
*
2
;
Console
.
WriteLine
(
$"x in Incr-By-Ref
{
x
}
, y in Main
{
y
}
"
);
}
//static double Gps2Kart(double Laengengrad, double Breitengrad,
// out double x, out double y)
static
void
IncrArrayByValue
(
int
[]
f
)
{
for
(
int
i
=
0
;
i
<
f
.
Length
;
i
++)
{
f
[
i
]++;
}
}
static
void
IncrArrayByRef
(
ref
int
[]
f
)
{
f
=
new
int
[]
{
100
,
200
,
300
,
400
,
500
,
600
,
700
,
800
};
}
static
void
Main
(
string
[]
args
)
{
int
x
=
10
;
int
a
=
20
;
int
[]
feld
=
{
10
,
20
,
30
,
40
};
IncrByValue
(
x
);
IncrByValue
(
x
+
1
);
// Bei der by-value-Übergabe sind auch arithm. Ausdrücke erlaubt
IncrByRef
(
ref
x
,
out
a
);
// IncrByRef(ref x + 1, out a); // Bei der by-ref-Übergabe sind nur Variablen erlaubt
// keine Konstanten, keine arithm. Ausdrücke!
// Übergabe per ref: Variable muss vorher intialisiert worden sein
// Übergabe per out: Variable muss vorher nicht init. werden
Console
.
WriteLine
(
$"x in Main
{
x
}
, a in Main
{
a
}
"
);
IncrArrayByValue
(
feld
);
foreach
(
int
item
in
feld
)
{
Console
.
WriteLine
(
item
);
}
Console
.
WriteLine
(
"-----------"
);
IncrArrayByRef
(
ref
feld
);
foreach
(
int
item
in
feld
)
{
Console
.
WriteLine
(
item
);
}
}
}
}
Prog1_WS2017-18/10CallByReference/Properties/AssemblyInfo.cs
0 → 100644
View file @
16e46dd0
using
System.Reflection
;
using
System.Runtime.CompilerServices
;
using
System.Runtime.InteropServices
;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[
assembly
:
AssemblyTitle
(
"10CallByReference"
)]
[
assembly
:
AssemblyDescription
(
""
)]
[
assembly
:
AssemblyConfiguration
(
""
)]
[
assembly
:
AssemblyCompany
(
""
)]
[
assembly
:
AssemblyProduct
(
"10CallByReference"
)]
[
assembly
:
AssemblyCopyright
(
"Copyright © 2017"
)]
[
assembly
:
AssemblyTrademark
(
""
)]
[
assembly
:
AssemblyCulture
(
""
)]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[
assembly
:
ComVisible
(
false
)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[
assembly
:
Guid
(
"1a720d7e-a300-4351-9052-b774416a1be8"
)]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[
assembly
:
AssemblyVersion
(
"1.0.0.0"
)]
[
assembly
:
AssemblyFileVersion
(
"1.0.0.0"
)]
Prog1_WS2017-18/Prog1_WS2017-18.sln
View file @
16e46dd0
...
...
@@ -79,6 +79,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "10JaggedArrays", "10JaggedA
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "10WortweiseZerlegung", "10WortweiseZerlegung\10WortweiseZerlegung.csproj", "{375DCCFF-AD56-4BD7-B382-CB3DCBA7B79F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "10CallByReference", "10CallByReference\10CallByReference.csproj", "{1A720D7E-A300-4351-9052-B774416A1BE8}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
...
...
@@ -225,6 +227,10 @@ Global
{375DCCFF-AD56-4BD7-B382-CB3DCBA7B79F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{375DCCFF-AD56-4BD7-B382-CB3DCBA7B79F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{375DCCFF-AD56-4BD7-B382-CB3DCBA7B79F}.Release|Any CPU.Build.0 = Release|Any CPU
{1A720D7E-A300-4351-9052-B774416A1BE8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1A720D7E-A300-4351-9052-B774416A1BE8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1A720D7E-A300-4351-9052-B774416A1BE8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1A720D7E-A300-4351-9052-B774416A1BE8}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment