header-files 相关问题

头文件在某些​​编程语言中用于将源代码保存为可在多个源文件中重用的单个副本。此标记应用于有关使用头文件的问题。编程语言的标记(如C,C ++,PHP或Ruby)应与此标记一起使用,因为头文件的使用可能因编程语言而异。此标记通常不与Java或Go编程和import指令一起使用。

“getline()”函数在哪个库或头文件中声明?

我是c++编程新手,根据我所学到的知识,我们从库导入基本的输入和输出函数。但是,当我使用 getline() 函数时,该函数用于

回答 1 投票 0

如何为 Visual Studio 构建工具安装 C 标准头文件?

我使用 winget 安装了 Visual Studio 构建工具,如 https://stackoverflow.com/a/55053709/60075 中所述。 不过,我正在尝试编译一些 C 代码。我收到错误 example.h(13):致命...

回答 1 投票 0

cout 在类 .cpp 文件的方法内出现提示后停止打印

所以我有一个基本代码:尝试用两个函数定义字符串数据类型,连接并打印它。 所以我所做的是声明一个 .cpp 文件和一个包含类内容的 .h 文件......

回答 1 投票 0

在 C++ 中使用调用查找函数定义

我正在尝试理解一个相当大的C++项目的源代码。 源代码不是用 IDE 编写的,因此我没有“转到”按钮来直接转到函数定义。 例如...

回答 2 投票 0

C 头文件包含错误

希望这是一个简单的问题...这是我重现此问题的过程。 首先我创建我的源文件: bash $ 猫 t.c #包括“t.h” int main() { ABC abc; } 然后我创建我的

回答 1 投票 0

MS Visual Studio 项目头文件

我对在 MSVS 中开发 C/C++ 代码相当陌生,但已经让我困惑的一件事是为什么在向我的项目添加一组源文件和头文件后,它们会显示出相应的...

回答 6 投票 0

如何在Debian Linux的GCC的math.h文件中找到sin函数的声明?

我在 Yashwant Kanetkar 的书 Let us C 中读到了有关 C 编程语言的内容。在函数章节中,我读到了 math.h 文件的 sin、cos、tan 和 pow 函数。但本章中写道: 是...

回答 1 投票 0

关于条件编译(ifndef)的问题

我在头文件中得到了一个类声明,例如: #ifndef 文件_H #定义文件_H 类前{ 私人的: 民众: }; #endif 我被要求在同一个文件中编写方法定义...

回答 1 投票 0

有关条件编译(ifndef)的快速问题

这很可能是一个非常愚蠢的问题,但我需要确定。我在头文件中得到了一个类声明,例如。 #ifndef 文件_H #定义文件_H 类前{ 私人的: 民众: }; #endif ...

回答 1 投票 0

有没有办法在 Objective-C 中添加头文件中没有的 iVar(不使用 LLVM 2.0 或更高版本)?

我最近了解到可以使用 LLVM2.0 在类扩展中添加 ivar。 (海湾合作委员会不能这样做) 这在某种程度上确实是私人 iVar,因为其他用户不知道它的存在,因为它不在他的...

回答 3 投票 0

令人困惑的编译器错误

好的,如果需要,我会添加代码,但通常我很擅长找出错误。然而我得到的这个非常令人困惑。我正在使用三个文件。一个驱动代码citysim.cpp,以及两个支持fi...

回答 1 投票 0

多个头文件到一个源文件?

我有一个名为source.c的源文件和一个名为source.h的公共头文件。 source.c 包含 s #include“源文件.h” 我不希望 source.c 中的所有函数都是公开的,因此我...

回答 3 投票 0

C++ 无法识别我的头文件存在

我做了一个 #include 并放置了我的头文件,但是我收到一条错误消息,说无法找到我的文件。 错误图像和我的包含。 即使我的头文件确实存在并且完全相同

回答 2 投票 0

C++ 项目的结构应该是怎样的?

我最近开始学习 C++,来自 Ruby 环境,我发现很难以仍然可以正确编译的方式构建项目,我一直在使用 Code::Blocks wh...

回答 4 投票 0

头文件中的多个定义

给出以下代码示例: 复杂.h: #ifndef COMPLEX_H #定义COMPLEX_H #包括 复合类 { 民众: 复杂(浮点实数,浮点虚数); float real() const { 返回

回答 4 投票 0

在 opencart 2.0 标头中存储数组将无法加载

我尝试将商店添加到opencart 2.0的标题中 在标头的控制器中: 我尝试将商店添加到 opencart 2.0 的标题中 在标头的控制器中: <?php class ControllerCommonHeader extends Controller { public function index() { // Analytics $this->load->model('extension/extension'); $data['analytics'] = array(); $analytics = $this->model_extension_extension->getExtensions('analytics'); foreach ($analytics as $analytic) { if ($this->config->get($analytic['code'] . '_status')) { $data['analytics'][] = $this->load->controller('analytics/' . $analytic['code']); } } if ($this->request->server['HTTPS']) { $server = $this->config->get('config_ssl'); } else { $server = $this->config->get('config_url'); } if (is_file(DIR_IMAGE . $this->config->get('config_icon'))) { $this->document->addLink($server . 'image/' . $this->config->get('config_icon'), 'icon'); } $data['title'] = $this->document->getTitle(); $data['base'] = $server; $data['description'] = $this->document->getDescription(); $data['keywords'] = $this->document->getKeywords(); $data['links'] = $this->document->getLinks(); $data['styles'] = $this->document->getStyles(); $data['scripts'] = $this->document->getScripts(); $data['lang'] = $this->language->get('code'); $data['direction'] = $this->language->get('direction'); $data['name'] = $this->config->get('config_name'); if (is_file(DIR_IMAGE . $this->config->get('config_logo'))) { $data['logo'] = $server . 'image/' . $this->config->get('config_logo'); } else { $data['logo'] = ''; } $this->load->language('common/header'); $data['text_home'] = $this->language->get('text_home'); // stores // $this->load->language('module/store'); $data['store_id'] = $this->config->get('config_store_id'); $data['stores'] = array(); $data['stores'][] = array( 'store_id' => 0, 'name' => $this->language->get('text_default'), 'url' => HTTP_SERVER . 'index.php?route=common/home&session_id=' . $this->session->getId() ); $this->load->model('setting/store'); $results = $this->model_setting_store->getStores(); foreach ($results as $result) { $data['stores'][] = array( 'store_id' => $result['store_id'], 'name' => $result['name'], 'url' => $result['url'] . 'index.php?route=common/home&session_id=' . $this->session->getId() ); } // stores // // Wishlist if ($this->customer->isLogged()) { $this->load->model('account/wishlist'); $data['text_wishlist'] = sprintf($this->language->get('text_wishlist'), $this->model_account_wishlist->getTotalWishlist()); } else { $data['text_wishlist'] = sprintf($this->language->get('text_wishlist'), (isset($this->session->data['wishlist']) ? count($this->session->data['wishlist']) : 0)); } $data['text_shopping_cart'] = $this->language->get('text_shopping_cart'); $data['text_logged'] = sprintf($this->language->get('text_logged'), $this->url->link('account/account', '', 'SSL'), $this->customer->getFirstName(), $this->url->link('account/logout', '', 'SSL')); $data['text_account'] = $this->language->get('text_account'); $data['text_klantenservice'] = $this->language->get('text_klantenservice'); $data['text_register'] = $this->language->get('text_register'); $data['text_login'] = $this->language->get('text_login'); $data['text_order'] = $this->language->get('text_order'); $data['text_transaction'] = $this->language->get('text_transaction'); $data['text_download'] = $this->language->get('text_download'); $data['text_logout'] = $this->language->get('text_logout'); $data['text_checkout'] = $this->language->get('text_checkout'); $data['text_category'] = $this->language->get('text_category'); $data['text_all'] = $this->language->get('text_all'); $data['home'] = $this->url->link('common/home'); $data['wishlist'] = $this->url->link('account/wishlist', '', 'SSL'); $data['logged'] = $this->customer->isLogged(); $data['account'] = $this->url->link('account/account', '', 'SSL'); $data['register'] = $this->url->link('account/register', '', 'SSL'); $data['login'] = $this->url->link('account/login', '', 'SSL'); $data['order'] = $this->url->link('account/order', '', 'SSL'); $data['transaction'] = $this->url->link('account/transaction', '', 'SSL'); $data['download'] = $this->url->link('account/download', '', 'SSL'); $data['logout'] = $this->url->link('account/logout', '', 'SSL'); $data['shopping_cart'] = $this->url->link('checkout/cart'); $data['checkout'] = $this->url->link('checkout/checkout', '', 'SSL'); $data['contact'] = $this->url->link('information/contact'); $data['telephone'] = $this->config->get('config_telephone'); $status = true; if (isset($this->request->server['HTTP_USER_AGENT'])) { $robots = explode("\n", str_replace(array("\r\n", "\r"), "\n", trim($this->config->get('config_robots')))); foreach ($robots as $robot) { if ($robot && strpos($this->request->server['HTTP_USER_AGENT'], trim($robot)) !== false) { $status = false; break; } } } // Menu $this->load->model('catalog/category'); $this->load->model('catalog/product'); $data['categories'] = array(); $categories = $this->model_catalog_category->getCategories(0); foreach ($categories as $category) { if ($category['top']) { // Level 2 $children_data = array(); $children = $this->model_catalog_category->getCategories($category['category_id']); foreach ($children as $child) { if ($child['image']) { $image = $child['image']; } else { $image = 'placeholder.png'; } $filter_data = array( 'filter_category_id' => $child['category_id'], 'filter_sub_category' => true ); $children_data[] = array( 'name' => $child['name'] . ($this->config->get('config_product_count') ? ' (' . $this->model_catalog_product->getTotalProducts($filter_data) . ')' : ''), 'href' => $this->url->link('product/category', 'path=' . $category['category_id'] . '_' . $child['category_id']), 'thumb' => $child['image'], ); } // Level 1 $data['categories'][] = array( 'name' => $category['name'], 'children' => $children_data, 'column' => $category['column'] ? $category['column'] : 1, 'href' => $this->url->link('product/category', 'path=' . $category['category_id']), 'thumb' => $category['image'], ); } } $data['language'] = $this->load->controller('common/language'); $data['currency'] = $this->load->controller('common/currency'); $data['search'] = $this->load->controller('common/search'); $data['cart'] = $this->load->controller('common/cart'); // For page specific css if (isset($this->request->get['route'])) { if (isset($this->request->get['product_id'])) { $class = '-' . $this->request->get['product_id']; } elseif (isset($this->request->get['path'])) { $class = '-' . $this->request->get['path']; } elseif (isset($this->request->get['manufacturer_id'])) { $class = '-' . $this->request->get['manufacturer_id']; } else { $class = ''; } $data['class'] = str_replace('/', '-', $this->request->get['route']) . $class; } else { $data['class'] = 'common-home'; } if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/common/header.tpl')) { return $this->load->view($this->config->get('config_template') . '/template/common/header.tpl', $data); } else { return $this->load->view('default/template/common/header.tpl', $data); } } } 在header.tpl: <!-- stores --> <div class="fadelink fadelink_links"> <a><?php echo $name; ?></a> <div class="ul_wrapper"> <ul> <?php foreach ($stores as $store) { if ($store['store_id'] == $store_id) { ?> <li> <a href="<?php echo $store['url']; ?>"><b><?php echo $store['name']; ?></b></a> </li> <?php } else { ?> <li> <a href="<?php echo $store['url']; ?>"><?php echo $store['name']; ?></a> </li> <?php } ?> <?php } ?> </ul> </div> </div> <!-- stores --> 控制器中出现问题,因为阵列存储无法加载数据。我用另一个模块和 $stores = 'value'; 测试了它这些都工作得很好。唯一的区别是存储值是配置值。有人知道我没有看到什么吗? https://stackoverflow.com/questions/30358240/how-to-insert-module-in-header-tpl-file-in-opencart-2-0#= 您的 tpl 文件中有错误。 应该是 <?php foreach ($stores as $store) { ?> <?php if ($store['store_id'] == $store_id) { ?> <li> <a href="<?php echo $store['url']; ?>"><b><?php echo $store['name']; ?></b></a> </li> <?php } else { ?> <li> <a href="<?php echo $store['url']; ?>"><?php echo $store['name']; ?></a> </li> <?php } ?> 在 tpl 文件中调用变量时,您永远使用$data。相反,您使用 $variable 名称。在 tpl 文件中,只需将 $data['stores'] 更改为 $stores。 改变 <?php foreach ($data['stores'] as $store) { ?> 致 <?php foreach ($stores as $store) { ?>

回答 2 投票 0

Objective-C 是否加载整个#imported 文件?

我试图了解导入文件在编译时和运行时到底发生了什么。 #import "file.h" 指令本质上是将整个 file.m 复制并粘贴到当前文件中吗?哦...

回答 2 投票 0

为什么我不需要在 gcc 4.6 中包含 STL 头文件?

我在c++0x模式下使用gcc 4.6。我注意到,如果我使用向量和其他 STL 容器但不包含其关联的头文件,则似乎不会出现任何编译器错误。这是设计使然吗? ...

回答 2 投票 0

未识别结构类型?

我有一个抽象数据类型,它指向具体的数据类型结构。功能位于 C 文件中,而定义位于头文件中。编译器给我以下错误:

回答 1 投票 0

如何将非标准头文件链接到C编译器中

我正在尝试使用非标准头文件(http://ndevilla.free.fr/gnuplot)。它在我计算机上不同地方的许多代码中使用。 目前我必须放置头文件和

回答 2 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.