Tagged Questions
The inline-method tag has no wiki summary.
10
votes
5answers
3k views
Inline member functions in C++
ISO C++ says that the inline definition of member function in C++ is the same as declaring it with inline. This means that the function will be defined in every compilation unit the member function is ...
9
votes
3answers
320 views
Can method inlining optimization cause race conditions?
As seen in this question:
http://stackoverflow.com/questions/231525/raising-c-events-with-an-extension-method-is-it-bad
I'm thinking of using this extension method to safely raise an event:
public ...
9
votes
7answers
3k views
Inlining in Java
In C++ I can declare a method "inline" and the compiler is likely to inline it. As far as I understand there is no such keyword in Java.
Inlining is done if the JVM decides to do so? Can I influence ...
8
votes
3answers
13k views
C# - How do I define an inline method Func<T> as a parameter?
I've written a simple SessionItem management class to handle all those pesky null checks and insert a default value if none exists. Here is my GetItem method:
public static T GetItem<T>(string ...
5
votes
3answers
568 views
Why can't c# use inline anonymous lambdas or delegates?
I hope I worded the title of my question appropriately.
In c# I can use lambdas (as delegates), or the older delegate syntax to do this:
Func<string> fnHello = () => "hello";
...
4
votes
3answers
2k views
Usage of inline closures / function delegates in Actionscript
Why are inline closures so rarely used in Actionscript? They are very powerful and I think quite readable. I hardly ever see anyone using them so maybe I'm just looking at the wrong code. Google uses ...
3
votes
3answers
196 views
C++ inline methods with same if statements
i'm writting handler for OpenGL texture and i'm thinking about safety and performance. Which level of optimization should remove marked if statements?
struct Texture2D {
GLuint ID;
inline ...
3
votes
1answer
940 views
How does the Delphi 2009 compiler handle recursive inline methods?
Do "What's wrong with using inline functions" and "Can a recursive function be inline" apply to Delphi inline functions? Furthermore, does anyone know how recursive inline functions are handled in ...
2
votes
1answer
150 views
inline functions in c++
here is a small question about inline functions in c++.
At what stage of the compilation in C++ are the inline functions actually inlined at the call?
how does that basically work.
lets say if the ...
2
votes
3answers
360 views
Inline functions in dotNet 3.0+ with C#?
I am looking for a trick in newer dotnets where I can use inline functions that return a string value. Here's what I have:
var split = new[] { " " };
var words = SearchTextBox.Text.Trim().Split(
...
2
votes
1answer
360 views
If optimizations are enabled will the JIT always inline this method?
I am not expecting a definite yes or no. Any knowledge you might have I will consider as an answer.
private String CalculateCharge(Nullable<Decimal> bill, Nullable<Decimal> rate)
{
...
2
votes
8answers
2k views
1
vote
4answers
1k views
C++ template and inline question
When I'm writing a simple (non-template) class, if the function implementation is provided "right in place", it's automatically treated as inline.
class A {
void InlinedFunction() { int a = 0; }
...
0
votes
2answers
71 views
How to do a quick inline method with conditional?
This is what I'd like to do:
string x = if(true) "String Val" else "No String Val";
Is that possible?
0
votes
3answers
151 views
Inlined constructors? Explain this behavior[C++]
Consider this code
#include <iostream>
#include <cstdio>
using namespace std;
class Dummy {
public:
Dummy();
};
inline Dummy::Dummy() {
printf("Wow! :Dummy rocks\n");
}
int ...
0
votes
3answers
206 views
how to avoid repeating code?
I have some technical question, I have repeating code in my work, and I want to get rid of it, so I know that in C++ it is not good idea to use macro, but instead I must use inline function, is it ...
0
votes
7answers
305 views
Calling inline functions C++
I have an inline member function defined under class MyClass
int MyClass::myInlineFunction();
This function is called from several places in my code.
There are two ways to call this function
Case ...
0
votes
2answers
373 views
Is there a way I can inline a function to an Action delegate and referenced it at the same time?
Is there a way I can inline the delegated task instead of separating it on another function?
Original Code:
private void ofdAttachment_FileOk(object sender, CancelEventArgs e)
{
...