Tagged Questions
A provision that many programming languages provide to allow code (functions, classes, objects) in one file to be used in many others.
144
votes
11answers
70k views
Include JavaScript file inside JavaScript file?
Is there something similar to @import in CSS in JavaScript that allows you to include a JavaScript file inside a JavaScript file?
85
votes
12answers
10k views
What is the difference between #include <filename> and #include “filename”?
In the C and C++ programming languages, what is the difference between using angle brackets and using quotes in an include statement, as follows?
#include <filename>
#include "filename"
58
votes
6answers
20k views
What is the difference between #import and #include in Objective-C?
What are the differences between #import and #include in Objective-C and are there times where you should use one over the other? Is one deprecated?
I was reading the following tutorial: ...
49
votes
1answer
8k views
ASP.Net MVC 3 Razor: Include js file in Head tag
I'm trying to figure out the proper razor syntax to get a js file for a particular *.cshtml to be in the head tag along with all the other include files that are defined in _Layout.cshtml
Thank you,
...
44
votes
4answers
13k views
What is the difference between include and require in Ruby?
My question is similar to this one over here about include and extend.
What's the difference between require and include in Ruby? If I just want to use the methods from a module in my class, should ...
44
votes
19answers
8k views
How should I detect unnecessary #include files in a large C++ project?
I am working on a large C++ project in Visual Studio 2008, and there are a lot of files with unnecessary #include's. Sometimes the #include's are just artifacts and everything will compile fine with ...
43
votes
16answers
5k views
C/C++: Detecting superfluous #includes?
I often find that the headers section of a file get larger and larger all the time but it never gets smaller. Throughout the life of a source file classes may have moved and been refactored and it's ...
40
votes
4answers
49k views
How to add a default include path for gcc in linux?
I'd like gcc to include files from $HOME/include in addition to the usual include directories, but there doesn't seem to be an analogue to $LD_LIBRARY_PATH. I know I can just add the include directory ...
32
votes
13answers
10k views
How do you dynamically load a javascript file? (Think C's #include)
How can you reliably and dynamically load a javascript file? This will can be used to implement a module or component that when 'initialized' the component will dynamically load all needed javascript ...
30
votes
11answers
3k views
Your preferred C/C++ header policy for big projects?
When working on a big C/C++ project, do you have some specific rules regarding the #include within source or header files?
For instance, we can imagine to follow one of these two excessive rules:
...
23
votes
8answers
973 views
How secure is PHP?
I am somewhat new to PHP coding and I am aware that malicious users can hack a website if you have not sanitized your PHP code. What I am wondering is whether they need a data entry box (like for file ...
22
votes
7answers
844 views
Abolish include-files in C++
Suppose i have the following code (literally) in a C++ source file:
// #include <iostream> // superfluous, commented-out
using std::cout;
using std::endl;
int main()
{
cout << "Hello ...
17
votes
10answers
2k views
Clean up your #include statements?
How do you maintain the #include statements in your C or C++ project? It seems almost inevitable that eventually the set of include statements in a file is either insufficient (but happens to work ...
16
votes
6answers
624 views
Organize includes
Is there some preferred way to organize ones include directives?
Is it better to include the files you need in the .cpp file instead of the .h file? Are the translation units affected somehow?
...
16
votes
2answers
8k views
Simple example of <merge> and <include> usage in Android XML-layouts
I'm curious about the <merge> and <include> tags in Android XML-layouts. I've read two tutorials, but haven't yet found a simple example usage.
Would be happy if someone could provide ...
16
votes
7answers
3k views
Displaying the #include hierarchy for a C++ file in Visual Studio
Problem: I have a large Visual C++ project that I'm trying to migrate to Visual Studio 2010. It's a huge mix of stuff from various sources and of various ages. I'm getting problems because something ...
16
votes
4answers
12k views
How to include() all PHP files from a directory?
Very quick n00b question, in PHP can I include a directory of scripts.
i.e. Instead of:
include('classes/Class1.php');
include('classes/Class2.php');
is there something like:
...
15
votes
4answers
8k views
Include relative files in PowerShell
I would like to include script files with such pseudo syntax:
Include '.\scripA.ps1'
But the only thing I have found is some thing like this:
$thisScript = Split-Path -Path ...
15
votes
17answers
22k views
prevent direct access to a php include file
I have a php file which I will be using as exclusively as an include. Therefor I would like to throw an error instead of executing it when it's accessed directly by typing in the URL instead of being ...
14
votes
5answers
11k views
13
votes
1answer
173 views
Is it a good idea to wrap an #include in a namespace block?
I have a C header that was written to compile as both C and C++ (it only uses features from the common subset, and uses that extern "C" thing).
Problem is, that header declares stuff in the global ...
12
votes
7answers
2k views
What's the best way to share JARs across multiple projects?
When you have multiple projects that all use the same set of JAR libraries, it's tedious to include the same JARs over and over again with each project. If I'm working on 20 different projects, I'd ...
12
votes
7answers
1k views
When can you omit the file extension in an #include directive?
I'm playing around with gmock and noticed it contains this line:
#include <tuple>
I would have expected tuple.h.
When is it okay to exclude the extension, and does it give the directive a ...
12
votes
13answers
1k views
Is requiring a certain order for #includes in c++ a sign of bad library/header design?
I've used some very large scale systems and never seen a required order, but came across it recently. Does the STL or STD library or even Boost have any cases where certain includes must come in a ...
11
votes
3answers
172 views
Is PHP's include resource-expensive (particularly during iterations)?
Does PHP cache include requests? I was wondering how to clean up my code and I thought about using a bit more includes. Consider the following scheme.
[foreach answer] [include answer.tpl.php] ...
11
votes
4answers
5k views
How to get RelativeLayout working with merge and include?
I have been trying for a few days now to make my layouts more efficient by converting from using several levels of nested LinearLayouts to one RelativeLayout and have come across a few problems that I ...
11
votes
12answers
1k views
What requires me to declare “using namespace std;”?
This question may be a duplicate, but I can't find a good answer. Short and simple, what requires me to declare
using namespace std;
in C++ programs?
10
votes
2answers
358 views
Nested preferences.xml
Is it somehow possible to include one preferences.xml into another, like it can be done for layouts with the <include /> tag?
Let's say:
<?xml version="1.0" encoding="utf-8"?>
...
10
votes
6answers
4k views
How does one include TR1?
Different compilers seem to have different ideas about TR1. G++ only seems to accept includes of the type:
#include <tr1/unordered_map>
#include <tr1/memory>
...
While Microsofts ...
10
votes
7answers
3k views
“#include” a text file in a C program as a char[]
Is there a way to include an entire text file as a string in a C program at compile-time?
something like:
file.txt:
This is
a little
text file
main.c:
#include <stdio.h>
int main(void) {
...
10
votes
7answers
19k views
Including one C source file in another?
Is it OK (or even recommended/good practice) to #include .c file in another .c file? What happens when they are included in a project file?
10
votes
3answers
3k views
Best Practice: include( or <script src="
I have minified my javascript and my css.
Now, Which is better?
<script type="text/javascript">
<?
$r = file_get_contents('min.js');
if($r) echo $r;
?>
</script>
OR
...
9
votes
9answers
1k views
Where to put include statements, header or source?
Should I put the includes in the header file or the source file? If the header file contains the include statements, then if I include that header file in my source, then will my source file have all ...
9
votes
3answers
1k views
When is #include <new> library required in C++?
According to this reference entry for operator new
( http://www.cplusplus.com/reference/std/new/operator%20new/ ) :
Global dynamic storage operator
functions are special in the standard
...
9
votes
5answers
2k views
C/C++, can you #include a file into a string literal?
I have a C++ source file and a Python source file. I'd like the C++ source file to be able to use the contents of the Python source file as a big string literal. I could do something like this:
char* ...
9
votes
8answers
2k views
Is there a standard #include convention for C++?
This is a rather basic question, but it's one that's bugged me for awhile.
My project has a bunch of .cpp (Implementation) and .hpp (Definition) files.
I find that as I add additional classes and ...
9
votes
5answers
4k views
What are the benefits of a relative path such as “../include/header.h” for a header?
I've reviewed questions How to use include directive correctly and C++ #include semantics and neither addresses this - nor do the others suggested by SO when I typed the title...
What, if any, are ...
9
votes
6answers
9k views
Can I include dll in exe (in Visual Studio)?
To run my App I need AxInterop.WMPLib.dll and Interop.WMPLib.dll that are located in Debug and Release folder. Is there any way to include those dlls into exe so my app is available in one file only?
8
votes
6answers
482 views
Is the backslash acceptable in C and C++ #include directives?
There are two path separators in common use: the Unix forward-slash and the DOS backslash. Rest in peace, Classic Mac colon. If used in an #include directive, are they equal under the rules of the ...
8
votes
3answers
312 views
Why do some includes need the .h and others not?
Why is map imported as #include <map>, but stdio imported as #include <stdio.h>?
8
votes
2answers
6k views
Rails 3 - select with Include?
I've been looking for how to do a select with include in Rails 3 - I have a nested example:
@items = Item.where("fulfilled = ?", true).includes({:order=>[:supplier, :agent]}, :manufacturer)
This ...
8
votes
2answers
17k views
How to add include path in Qt Creator?
I have a project I'm working on in Qt creator that requires a third-party library. I want to add the headers to the include path for the project. How do I do this?
8
votes
6answers
3k views
EF4 LINQ Include(string) alternative to hard-coded string?
Is there any alternative to this:
Organizations.Include("Assets").Where(o => o.Id == id).Single()
I would like to see something like:
Organizations.Include(o => o.Assets).Where(o => o.Id ...
8
votes
4answers
633 views
How many PHP includes are too many?
Each page on my website is rendered using PHP.
Each PHP file uses around 10 includes. So for every page that is displayed, the server needs to fetch 10 files, in addition to the rest of it's ...
8
votes
7answers
5k views
How to include file outside document root?
What I want do to is to include 'file1.php' from 'domain1' into 'file2.php' on 'domain2'. So what I figured I should do is something like this:
file2.php
require_once ...
8
votes
6answers
5k views
How do I include functions from another file in my Perl script?
This seems like a really simple question but somehow my Google-Fu failed me.
What's the syntax for including functions from other files in perl? I'm looking for something like C's #include "blah.h"
...
8
votes
3answers
6k views
root path doesnt work with php include
/ in the beginning of a link to get to the root folder doesnt work in php include.
for example "/example/example.php"
What is the solution?
8
votes
4answers
705 views
Source file organisation
I am having a bit of trouble organising my source files.
I have my own small, but growing collection of code that I would like to use in various projects. The file and folder layout is something like ...
8
votes
8answers
950 views
#include <> and #include “” [closed]
Possible Duplicate:
what is the difference between #include <filename> and #include “filename”
Is there a fundamental difference between the two #include syntax, apart from ...
8
votes
8answers
13k views
How do I format a PHP include() absolute (rather than relative) path?
On various pages throughout my PHP web site and in various nested directories I want to include a specific file at a path relative to the root.
What single command can I put on both of these pages...
...