hello, since i am too lazy to do measures myself, i am asking you guys here if you know details about the performance loss of many method calls.
example
public void functionWithLotsOfCode() {
// lots of code here
}
the code in this function could be split up to three functions and then called like this:
public void functionWithLotsOfCode() {
functionA();
functionB();
functionC();
}
will the second option be significantly slower? imagine the function really does a lot of work and is called very often!