Created
July 15, 2015 13:08
-
-
Save skonefal/51e9787393b213c2f0e3 to your computer and use it in GitHub Desktop.
C++ Duck Typing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
class Slon { | |
void SlonioweSprawy() { | |
return; | |
} | |
}; | |
class Zmija { | |
public: | |
void DuckTypingInsideCpp() { | |
std::cout << "DuckTypingInsideCpp!" << std::endl; | |
} | |
int kot; | |
}; | |
class Kobra { | |
public: | |
void DuckTypingInsideCpp() { | |
std::cout << "JestemPytonem!" << std::endl; | |
} | |
}; | |
class PytongTemplate { | |
public: | |
template <typename T> | |
void tester(T test){ | |
test.DuckTypingInsideCpp(); | |
return; | |
} | |
}; | |
int main() { | |
std::cout << "Hello, World!" << std::endl; | |
PytongTemplate pytong; | |
Zmija zmija; | |
Kobra kobra; | |
Slon slon; | |
pytong.tester(zmija); | |
pytong.tester(kobra); | |
// pytong.tester(slon); // will not compile | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment