Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
namespace
- Page 1
Segmentation Fault in C++ Program – Need Debugging
Programming
Software Development
1 Month Ago
by YashSmith
… element. Here’s my code: #include <iostream> using
namespace
std; int main() { int arr[5]; cout << arr…
Re: Show computer name on a label
Programming
Software Development
1 Month Ago
by Mr.M
… using
namespace
System; using
namespace
System::ComponentModel; using
namespace
System::Collections; using
namespace
System::Windows::Forms; using
namespace
System::Data; using
namespace
System::Drawing; using
namespace
System…
Re: Show computer name on a label
Programming
Software Development
1 Month Ago
by toneewa
… #include <msclr/marshal_cppstd.h>
namespace
MR_MNamespace { void DisplayComputerName(); } Created mr_m.…include "stdafx.h" using
namespace
System; using
namespace
MR_MNamespace;
namespace
MR_MNamespace { void DisplayComputerName() { wchar_t …
Re: Show computer name on a label
Programming
Software Development
1 Month Ago
by Salem
… namespaces where things called 'String' are present. using
namespace
Platform; using
namespace
default; using
namespace
System; Or maybe you have your own `String…
Re: Show computer name on a label
Programming
Software Development
1 Month Ago
by toneewa
….h #pragma once #include <windows.h> using
namespace
System; using
namespace
System::Windows::Forms; public ref class Mr_M : public Form…
Re: Segmentation Fault in C++ Program – Need Debugging
Programming
Software Development
1 Month Ago
by Reverend Jim
Don't try to access past the end of the array.
Re: Segmentation Fault in C++ Program – Need Debugging
Programming
Software Development
1 Month Ago
by rproffitt
Thanks for the MVE (minimum viable example). But it's just bad code. c, c++ and a lot of language won't stop you from going out of bounds.
Re: Segmentation Fault in C++ Program – Need Debugging
Programming
Software Development
1 Month Ago
by Dani
You’re creating an array of 5 integers and then trying to access the 11th integer in the array (assuming the indexes start at 0). You’re getting an out of bounds error because you’re trying to access an array element that doesn’t exist. You can access arr[0] up through arr[4].
Re: Segmentation Fault in C++ Program – Need Debugging
Programming
Software Development
1 Month Ago
by Salem
It should be obvious by now from their posting history that the OP is a troll.
Namespace
Programming
Software Development
11 Years Ago
by treasure2387
…public class Object { // Class code } } Shouldn't be like this:
namespace
System {
namespace
Runtime {
namespace
ConstrainedExecution { public class Object { // Class code } } } }
Re: Namespace help
Programming
Web Development
12 Years Ago
by Squidge
… use classLib\database\database_Connection as DB; // import
namespace
for code reuse class load_headScript { public function headLoad…;?php // root -> /classLib/dataBase/database_Connection.php:
namespace
classLib\database; // declare namespcae class database_Connection { /** *…
Re: Namespace
Programming
Software Development
11 Years Ago
by Momerath
All the `using` statement does is allow you to use the classes in that
namespace
without having to give the fully qualified name. So, for example, the `using System.Runtime` lets you used the class GCSettings (again, for example) without having to type `System.Runtime.GCSettings`
Namespace help
Programming
Web Development
12 Years Ago
by Squidge
… previous thread (now resolved) i want to convert and use
namespace
. **headScript.php**: <?php class headScript { public function connection()…and put this in its own file, then using
namespace
to pull this in. That way i have one… file which can be called via
namespace
and i can use this function. Am I thinking…
Re: Namespace help
Programming
Web Development
12 Years Ago
by Atli
… script that does use namespaces, you need to specify the
namespace
of the classes and functions you are trying to use… you are trying to use classes/functions from the current
namespace
. - In the case of the built-in classes and functions…, they belong to the root
namespace
: `\` So changing it to this will get it to …
Re: Namespace help
Programming
Web Development
12 Years Ago
by cereal
Try this: <?php
namespace
Dbase; class Dbconn { public function conn() { return new \PDO("…
Re: Namespace help
Programming
Web Development
12 Years Ago
by Atli
… object is created and used everywhere. Consider this: <?php
namespace
organization\projectname\database; class Database { /** * @var PDO The database link…
Re: Namespace help
Programming
Web Development
12 Years Ago
by vaayaa1
interesting, very few people use
namespace
in php. Watching this link :-)
Re: Namespace help
Programming
Web Development
12 Years Ago
by Squidge
??Global
namespace
??
Re: Namespace help
Programming
Web Development
12 Years Ago
by Atli
… PHP 5.3+ that is not defined inside a specific
namespace
belongs to this *Global Space*. To access classes and functions…
namespace.....
Programming
Software Development
13 Years Ago
by Daita
what does using
namespace
std; actually mean? ...
Re: namespace.....
Programming
Software Development
13 Years Ago
by mike_2000_17
…), I would like to be [ICODE]using[/ICODE] this [ICODE]
namespace
[/ICODE] that they call [ICODE]std[/ICODE]. This would really…
namespace controversy
Community Center
18 Years Ago
by Ancient Dragon
…a program, or is the global declaration "using
namespace
std" being unjustly maligned as a "global…up if you start naming global variables associated with a
namespace
. Morerover, unused names are NOT consiered errors "…or HS I see nothing wrong with "using
namespace
std". But in larger commercial programs that …
Re: namespace std
Programming
Software Development
16 Years Ago
by Duoas
…] [code=C++] // console.cpp #include "console.hpp"
namespace
console { using
namespace
std; int pause( const string& prompt ) { ... } } [/code…> #include <stdexcept> #include <string>
namespace
duthomhas { ... template <typename CharType> inline CharType uppercase(…
Re: namespace controversy
Community Center
18 Years Ago
by Narue
…dangerous: [code] #include <iostream> using
namespace
std; void foo() { // Might unintentionally use standard… Might unintentionally use standard names } int main() { using
namespace
std; // Uses unadorned standard names } [/code] By …restricting the scope in which you open a
namespace
, you can localize problems more easily. For …
namespace function pointers - 'not a namespace name error'
Programming
Software Development
12 Years Ago
by sblass92
… " StateAction': is not a class or
namespace
name. I've whittled out code until just …In StateAction.h file #pragma once #include <iostream>
namespace
StateAction { void fun1(); void fun2(); }; //In StateAction.cpp…possible to restrict a function pointer to a
namespace
? I'm almost positive I've done …
Re: namespace function pointers - 'not a namespace name error'
Programming
Software Development
12 Years Ago
by mike_2000_17
…;using") their functions in that
namespace
. I could easily have this:
namespace
my_code { void my_function(); };
namespace
StateAction { using my_code::my_function; }; …that function pointers must point to functions in that
namespace
is a very weak restriction. An alternative might be…
Re: namespace controversy
Community Center
18 Years Ago
by John A
…'s simply not that much different than placing "using
namespace
std;" at the top of the program. And then… I mean. For larger projects, I just add "using
namespace
std" whenever it's needed, although I should be…
namespace file, class file and mutual dependency!
Programming
Software Development
14 Years Ago
by iw2z
…have 2 cpp files, in first.cpp I define
namespace
'myNS', and in second.cpp I define class … #ifndef FIRST_CPP #define FIRST_CPP #include "second.cpp"
namespace
myNS { myClass* myClassPtr; int justAnyNumber; } #endif //second.cpp…second.cpp before is reaches the definition of the
namespace
, but I'm still clueless on how to…
Re: Namespace conflicts
Programming
Game Development
14 Years Ago
by csb4622
….hpp(114) : error C2653: 'T' : is not a class or
namespace
name 1>c:\program files (x86)\boost_1_45_0\boost\thread….hpp(114) : error C2653: 'T' : is not a class or
namespace
name 1>c:\program files (x86)\boost_1_45_0\boost\thread…hpp(114) : error C2653: 'T' : is not a class or
namespace
name 1>c:\program files (x86)\boost_1_45_0\boost\thread…
Re: Namespace rant
Programming
Software Development
12 Years Ago
by deceptikon
… protect the innocent): CompanyName.Scheduling ScheduleEditor ScheduleTimer ScheduleTimerPulseEventArgs ScheduleOverlord The
namespace
ensures that when I want a `ScheduleEditor`, I can get… class and using directives separately and leave the IDE generated
namespace
as-is. It's a minor annoyance though. > …
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC