Skip to content

Commit 632db43

Browse files
committedApr 13, 2023
Специализация шаблонного метода в .cpp файле.
1 parent 7af0bcb commit 632db43

12 files changed

+317
-0
lines changed
 

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@
182182
- [Шаблон класса параметрированный геттером массива](tpl/tpl-with-arr-getter)
183183
- [Вызов у переданного указателя заданного метода с заданными аргументами](tpl/tpl-proxy)
184184
- [override метода предка переданного аргументом в шаблонный класс](tpl/tpl-and-override)
185+
- [Специализация шаблонного метода в .cpp файле](tpl/tpl-method-specialization-cpp)
185186

186187
## Свертка
187188

‎tpl/tpl-method-specialization-cpp/.gitignore

+160
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,160 @@
1+
# ---------------------------------------------------------------------------
2+
# https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
3+
4+
# General
5+
.DS_Store
6+
.AppleDouble
7+
.LSOverride
8+
9+
# Icon must end with two \r
10+
Icon
11+
12+
# Thumbnails
13+
._*
14+
15+
# Files that might appear in the root of a volume
16+
.DocumentRevisions-V100
17+
.fseventsd
18+
.Spotlight-V100
19+
.TemporaryItems
20+
.Trashes
21+
.VolumeIcon.icns
22+
.com.apple.timemachine.donotpresent
23+
24+
# Directories potentially created on remote AFP share
25+
.AppleDB
26+
.AppleDesktop
27+
Network Trash Folder
28+
Temporary Items
29+
.apdisk
30+
31+
# ---------------------------------------------------------------------------
32+
# https://github.com/github/gitignore/blob/master/C++.gitignore
33+
34+
# Prerequisites
35+
*.d
36+
37+
# Compiled Object files
38+
*.slo
39+
*.lo
40+
*.o
41+
*.obj
42+
43+
# Precompiled Headers
44+
*.gch
45+
*.pch
46+
47+
# Compiled Dynamic libraries
48+
*.so
49+
*.dylib
50+
*.dll
51+
52+
# Fortran module files
53+
*.mod
54+
*.smod
55+
56+
# Compiled Static libraries
57+
*.lai
58+
*.la
59+
*.a
60+
*.lib
61+
62+
# Executables
63+
*.exe
64+
*.out
65+
*.app
66+
67+
# ---------------------------------------------------------------------------
68+
# https://github.com/github/gitignore/blob/master/CMake.gitignore
69+
70+
CMakeLists.txt.user
71+
CMakeCache.txt
72+
CMakeFiles
73+
CMakeScripts
74+
Testing
75+
Makefile
76+
cmake_install.cmake
77+
install_manifest.txt
78+
compile_commands.json
79+
CTestTestfile.cmake
80+
_deps
81+
82+
# ---------------------------------------------------------------------------
83+
# https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
84+
85+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
86+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
87+
88+
# User-specific stuff
89+
.idea/**/workspace.xml
90+
.idea/**/tasks.xml
91+
.idea/**/usage.statistics.xml
92+
.idea/**/dictionaries
93+
.idea/**/shelf
94+
95+
# AWS User-specific
96+
.idea/**/aws.xml
97+
98+
# Generated files
99+
.idea/**/contentModel.xml
100+
101+
# Sensitive or high-churn files
102+
.idea/**/dataSources/
103+
.idea/**/dataSources.ids
104+
.idea/**/dataSources.local.xml
105+
.idea/**/sqlDataSources.xml
106+
.idea/**/dynamic.xml
107+
.idea/**/uiDesigner.xml
108+
.idea/**/dbnavigator.xml
109+
110+
# Gradle
111+
.idea/**/gradle.xml
112+
.idea/**/libraries
113+
114+
# Gradle and Maven with auto-import
115+
# When using Gradle or Maven with auto-import, you should exclude module files,
116+
# since they will be recreated, and may cause churn. Uncomment if using
117+
# auto-import.
118+
# .idea/artifacts
119+
# .idea/compiler.xml
120+
# .idea/jarRepositories.xml
121+
# .idea/modules.xml
122+
# .idea/*.iml
123+
# .idea/modules
124+
# *.iml
125+
# *.ipr
126+
127+
# CMake
128+
cmake-build-*/
129+
130+
# Mongo Explorer plugin
131+
.idea/**/mongoSettings.xml
132+
133+
# File-based project format
134+
*.iws
135+
136+
# IntelliJ
137+
out/
138+
139+
# mpeltonen/sbt-idea plugin
140+
.idea_modules/
141+
142+
# JIRA plugin
143+
atlassian-ide-plugin.xml
144+
145+
# Cursive Clojure plugin
146+
.idea/replstate.xml
147+
148+
# Crashlytics plugin (for Android Studio and IntelliJ)
149+
com_crashlytics_export_strings.xml
150+
crashlytics.properties
151+
crashlytics-build.properties
152+
fabric.properties
153+
154+
# Editor-based Rest Client
155+
.idea/httpRequests
156+
157+
# Android studio 3.1+ serialized cache file
158+
.idea/caches/build_file_checksums.ser
159+
160+
# ---------------------------------------------------------------------------

‎tpl/tpl-method-specialization-cpp/.idea/.gitignore

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎tpl/tpl-method-specialization-cpp/.idea/.name

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎tpl/tpl-method-specialization-cpp/.idea/misc.xml

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎tpl/tpl-method-specialization-cpp/.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎tpl/tpl-method-specialization-cpp/.idea/tpl-method-specialization-cpp.iml

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎tpl/tpl-method-specialization-cpp/.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
cmake_minimum_required(VERSION 3.25)
2+
project(TPLMethodSpecializationCPP)
3+
4+
set(CMAKE_CXX_STANDARD 17)
5+
6+
add_executable(${PROJECT_NAME} main.cpp StringUtils.cpp)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
//
2+
// Created by Abbas Gussenov on 13.04.2023.
3+
//
4+
5+
#include "StringUtils.h"
6+
7+
/*
8+
template<class TOutputString, class TInputString>
9+
TOutputString StringUtils::ToString(TInputString const&)
10+
{
11+
if constexpr (std::is_same_v<TOutputString, std::wstring>)
12+
return L"std::wstring - base - cpp";
13+
else if constexpr (std::is_same_v<TOutputString, std::string>)
14+
return "std::string - base - cpp";
15+
return {};
16+
}
17+
*/
18+
19+
template<>
20+
std::wstring StringUtils::ToString<std::wstring, std::string>(std::string const& aInputString)
21+
{
22+
return L"std::wstring - spec - cpp";
23+
}
24+
25+
/*
26+
template
27+
std::wstring StringUtils::ToString<std::wstring, std::string>(std::string const&);
28+
*/
29+
// Explicit instantiation of 'ToString<std::wstring, std::string>' that occurs after an explicit specialization has no effect
30+
31+
/*
32+
template
33+
std::wstring StringUtils::ToString(std::string const&);
34+
*/
35+
// Explicit instantiation of 'ToString<std::wstring, std::string>' that occurs after an explicit specialization has no effect
36+
37+
template<>
38+
std::string StringUtils::ToString<std::string, std::wstring>(std::wstring const& aInputString)
39+
{
40+
return "std::string - spec - cpp";
41+
}
42+
43+
/*
44+
template
45+
std::string StringUtils::ToString<std::string, std::wstring>(std::wstring const&);
46+
*/
47+
// Explicit instantiation of 'ToString<std::string, std::wstring>' that occurs after an explicit specialization has no effect
48+
49+
/*
50+
template
51+
std::string StringUtils::ToString(std::wstring const&);
52+
*/
53+
// Explicit instantiation of 'ToString<std::string, std::wstring>' that occurs after an explicit specialization has no effect
54+
55+
StringUtils::StringUtils()
56+
{
57+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
//
2+
// Created by Abbas Gussenov on 13.04.2023.
3+
//
4+
5+
#ifndef TPL_METHOD_SPECIALIZATION_CPP_STRINGUTILS_H
6+
#define TPL_METHOD_SPECIALIZATION_CPP_STRINGUTILS_H
7+
8+
#include <string>
9+
10+
struct StringUtils
11+
{
12+
StringUtils();
13+
14+
template<class TOutputString, class TInputString>
15+
static TOutputString ToString(TInputString const&);
16+
17+
/*
18+
template<> std::wstring ToString(std:: string const&);
19+
template<> std:: string ToString(std::wstring const&);
20+
*/
21+
22+
/*
23+
template<> std::wstring ToString(std:: string const&)
24+
{
25+
return L"std::string - spec - h";
26+
}
27+
28+
template<> std:: string ToString(std::wstring const&)
29+
{
30+
return "std::string - spec - h";
31+
}
32+
*/
33+
34+
};
35+
36+
/*
37+
template<> std::wstring StringUtils::ToString(std:: string const&);
38+
template<> std:: string StringUtils::ToString(std::wstring const&);
39+
*/
40+
41+
#endif //TPL_METHOD_SPECIALIZATION_CPP_STRINGUTILS_H
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#include <iostream>
2+
#include "StringUtils.h"
3+
4+
int main() {
5+
6+
StringUtils stringUtils;
7+
8+
auto const stdWStr =
9+
// stringUtils.ToString<std::wstring>("Hello, World!") // Undefined symbols for architecture
10+
stringUtils.ToString<std::wstring>(std::string("Hello, World!"))
11+
// stringUtils.ToString<std::wstring>({"Hello, World!"}) // No matching member function for call to 'ToString'
12+
;
13+
std::wcout << stdWStr;
14+
15+
std::cout << std::endl;
16+
17+
auto const stdStr =
18+
// stringUtils.ToString<std::string>(L"Hello, World!") // Undefined symbols for architecture
19+
stringUtils.ToString<std::string>(std::wstring(L"Hello, World!"))
20+
// stringUtils.ToString<std::string>({L"Hello, World!"}) // No matching member function for call to 'ToString'
21+
;
22+
std::cout << stdStr;
23+
24+
return 0;
25+
}

0 commit comments

Comments
 (0)
Please sign in to comment.