-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtips.txt
398 lines (273 loc) · 7.77 KB
/
tips.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
///////// delete
////////////////////////////////////////////////////////////////////////////////////////////
class IFoo
{
public:
virtual int do_something() noexcept = 0;
void hello()
{
}
};
class FooImpl : public IFoo
{
public:
int do_something() noexcept
{
return 666;
}
void hello() = delete;
};
void main(void)
{
FooImpl f;
f.do_something();
f.hello(); // provoque une erreur de compil !
}
//// std algorithms
////////////////////////////////////////////////////////////////////////////////////////////
template<typename T>
bool presence_valeur_negative(const std::vector<T>& valeurs) noexcept
{
const auto premier {
std::find_if(valeurs.begin(),
valeurs.end(),
[](auto a){return a < 0;}) };
return premier != valeurs.end();
}
////////////////////////////////////////////////////////////////////////////////////////////
template<typename T>
std::ptrdiff_t compterValeurs(const std::vector<T>& valeurs,
T valeurCherchee) noexcept
{
static_assert(std::is_arithmetic<T>::value, "Type non arithmetique");
// égal à la valeur recherchée
const auto comp{ std::bind(std::equal_to<T>{}, std::placeholders::_1, valeurCherchee)};
// executer l'itérateur
const auto nb{ std::count_if(std::begin(valeurs), std::end(valeurs), comp) };
return nb;
}
///////////////////////////////////////////////////////////////////////////////////////
template<typename T>
int comptage(const std::set<T>& valeurs, T seuil) noexcept
{
int i = 0;
std::for_each(valeurs.begin(), valeurs.end(), [&i,seuil](int n) { if (n < seuil) i++; });
return i;
}
std::set<int> recipient;
recipient = { 6, 7, 8, 9, -5, 12, -6, 1, -4, -8 };
std::cout << comptage(recipient, 0); // NB : noter que le type de l'arg template est deduit par le compilo
//// strings
////////////////////////////////////////////////////////////////////////////////////////////
#include <iostream>
#include <string>
#include <cctype>
struct non_case_sensitive_char_traits : public std::char_traits<char>
{
static char to_upper(char ch)
{
return std::toupper((unsigned char)ch);
}
static int compare(const char* s1, const char* s2, size_t n)
{
while (n-- != 0)
{
if (to_upper(*s1) < to_upper(*s2)) return -1;
if (to_upper(*s1) > to_upper(*s2)) return 1;
++s1; ++s2;
}
return 0;
}
};
using non_case_sensitive_string = std::basic_string<char, non_case_sensitive_char_traits>;
void main(void)
{
non_case_sensitive_string s1 = "Hello";
non_case_sensitive_string s2 = "heLLo";
if (s1 == s2)
{
// do something
}
}
//c++ move constructor
//////////////////////////////////////////////////////////////////////////////
#include <iostream>
#include <string>
#include <memory>
#include <vector>
class A
{
private:
std::string identifiant;
public:
A( const std::string& id) : identifiant(id)
{
std::cout << "ctor A\n";
}
A(A&& src) // ctor de deplacement
{
identifiant = src.identifiant;
src.identifiant = "";
}
~A()
{
std::cout << "dtor A\n";
}
};
void main(void)
{
std::vector<A> list;
A a("instance1");
list.push_back(std::move(a)); // move() provoque l'appel du ctor de deplacement en transformant le '&' en '&&'
// a.identifiant contient maintenant "" -> le "deplacement" a ete effectue
}
///////////////////////////////////////////////////////////////////////////////////////////
#include <iostream>
#include <string>
#include <memory>
#include <vector>
class A
{
private:
std::string identifiant;
public:
A(const std::string& id) : identifiant(id)
{
std::cout << "ctor A\n";
}
A(A&& src) // ctor de deplacement
{
identifiant = src.identifiant;
src.identifiant = "";
}
~A()
{
std::cout << "dtor A\n";
}
};
A deplacer()
{
A a{ "instance" };
return a; //provoque l'appel du ctor de deplacement
}
void redeplacer(A&& valeur)
{
A a{ std::move(valeur) }; // provoque l'appel du ctor de deplacement
}
void main(void)
{
/*
A a{ deplacer() };
redeplacer(a);
*/
redeplacer(deplacer());
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
class A
{
private:
std::string identifiant;
public:
A(const A& src)
{
identifiant = src.identifiant;
}
A(const std::string& id) : identifiant(id)
{
std::cout << "ctor A\n";
}
A(A&& src)
{
identifiant = src.identifiant;
src.identifiant = "";
}
A& operator=(const A& src)
{
identifiant = src.identifiant;
return *this;
}
A& operator=(A&& src)
{
identifiant = src.identifiant;
return *this;
}
~A()
{
std::cout << "dtor A\n";
}
};
template <class T>
void myswap(T& a, T& b)
{
T tmp{ std::move(a) };
a = std::move(b);
b = std::move(tmp);
}
void main(void)
{
A a("AAAA");
A b("bbbb");
myswap(a, b);
}
///////////////////////////////////////////////////////////////////////////////////////////
class Foo
{
public:
std::string member;
Foo(std::string&& member): member{std::move(member)} {} // subtilité importante : member est une bien une lvalue puisqu'elle est nommée !! (meme si elle contient une ref rvalue)
// c'est pourquoi il faut la reconvertir en vraie rvalue a l'aide de std::move() :)
Note that the member parameter itself is not an rvalue, it’s an lvalue of type rvalue reference. In order to invoke std::string’s move constructor,
not its copy constructor, we use std::move(member) to cast the member parameter back to an rvalue.
};
// Later on...
Foo foo{bar + baz};
//recursion with constexpr
//////////////////////////////////////////////////////////////////////////////
template <size_t N>
constexpr size_t fact1() { return N*fact1<N - 1>(); }
template <>
constexpr size_t fact1<0>() { return 1; }
// SFINAE
///////////////////////////////////////////////////////////////////////////////
struct Test
{
typedef int type;
};
template < typename T >
void f( typename T::type ) {} // definition #1
template < typename T >
void f( T ) {} // definition #2
f< Test > ( 10 ); //appelle #1
f< int > ( 10 ); //appelle #2 sans erreur grace a SFINAE
////////////////////////////////////////////////////////////////////////////////
template <typename T>
struct has_iterator
{
template <typename U>
static char test(typename U::iterator* x);
template <typename U>
static long test(U* x);
static const bool value = sizeof(test<T>(0)) == 1;
};
cout << has_iterator<int>::value << endl;
//////////////////////////////////////////////////////////////////////////////
template < typename PotentiallyCallable, typename... Args>
struct is_callable
{
typedef char(&no)[1];
typedef char(&yes)[2];
template < typename T > struct dummy;
template < typename CheckType>
static yes check(dummy<decltype(std::declval<CheckType>()(std::declval<Args>()...))> *);
template < typename CheckType>
static no check(...);
enum { value = sizeof(check<PotentiallyCallable>(0)) == sizeof(yes) };
};
/////////////////////////////////////////////////////////////////////////
//
// compare 2 binary files
std::ifstream f1("file1.dcm", std::ifstream::binary);
std::ifstream f2("file2.dcm", std::ifstream::binary);
bool equal = std::equal(std::istreambuf_iterator<char>(f1.rdbuf()),
std::istreambuf_iterator<char>(),
std::istreambuf_iterator<char>(f2.rdbuf()));